1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Fixed an issue with updating editable packages from Git repositories

This commit is contained in:
Jannis Leidel 2009-07-01 17:44:29 +02:00
parent 4a73d683ad
commit 6d5841ee18

2
pip.py
View file

@ -2942,7 +2942,7 @@ class Git(VersionControl):
rev_options = [rev]
rev_display = ' (to revision %s)' % rev
else:
rev_options = ['master']
rev_options = ['origin/master']
rev_display = ''
clone = True
if os.path.exists(os.path.join(dest, self.dirname)):