We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The way git-up tries to get the path to the repository is not working when the GIT_WORK_TREE and GIT_DIR are different.
get_git_dir() tries to get the repository with
get_git_dir()
return execute(['git', 'rev-parse', '--show-toplevel'])
As far as I understand --git-dir should be used.
--git-dir
http://stackoverflow.com/a/21085415