-
-
Notifications
You must be signed in to change notification settings - Fork 933
Improved way of listing URLs in remote #528
New issue
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
Conversation
Conflicts: git/util.py
Use flock() for file locking
Now that performance tests are run, it appears we run into one particular failure on travis, possibly indicating a bug in python 3.3. Just bluntly increason the amount of handles might silence it... . Related to gitpython-developers#524
instead of using git remote show that can trigger a connection to the remote repository, use git remote get-url --all that works by only reading the .git/config. change should have no functional impact, so no test needed. Signed-off-by: Guyzmo <[email protected]>
(I noticed the issue when doing a |
@guyzmo |
+ Instead of using `git remote show` that may triggers connection to remote repo, use `git remote get-url --all` that works by only reading the `.git/config`. + Change should have no functional impact, so no test needed. + Works only with git -2.7+. Signed-off-by: Guyzmo <[email protected]>
looks like it's merged, thanks 👍 |
instead of using git remote show that can trigger a connection to the
remote repository, use git remote get-url --all that works by only
reading the .git/config.
change should have no functional impact, so no test needed.
Signed-off-by: Guyzmo [email protected]