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:
parent
4a73d683ad
commit
6d5841ee18
1 changed files with 1 additions and 1 deletions
2
pip.py
2
pip.py
|
@ -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)):
|
||||
|
|
Loading…
Reference in a new issue