We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems the fix for #694 only works if the current workin directory of the running program is within the git repository.
If the current working dir is outside the git repo, then the following (starting at git/remote.py:557)
git/remote.py:557
result = Git().execute( ['git', 'config', '--get', 'remote.%s.url' % self.name] )
fails with:
git.exc.GitCommandError: Cmd('git') failed due to: exit code(1) cmdline: git config --get remote.origin.url
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
It seems the fix for #694 only works if the current workin directory of the running program is within the git repository.
If the current working dir is outside the git repo, then the following (starting at
git/remote.py:557
)fails with:
The text was updated successfully, but these errors were encountered: