Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork938
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Conflicts:git/util.py
Use flock() for file locking
Now that performance tests are run, it appears we run into oneparticular failure on travis, possibly indicating a bug in python 3.3.Just bluntly increason the amount of handles might silence it... .Related togitpython-developers#524
instead of using git remote show that can trigger a connection to theremote repository, use git remote get-url --all that works by onlyreading the .git/config.change should have no functional impact, so no test needed.Signed-off-by: Guyzmo <guyzmo+github@m0g.net>
(I noticed the issue when doing a |
ankostis commentedOct 11, 2016 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
@guyzmo |
+ Instead of using `git remote show` that may triggers connection toremote repo, use `git remote get-url --all` that works by onlyreading the `.git/config`.+ Change should have no functional impact, so no test needed.+ Works only with git -2.7+.Signed-off-by: Guyzmo <guyzmo+github@m0g.net>
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: Guyzmoguyzmo+github@m0g.net