diff options
-rwxr-xr-x | project.py | 2 | ||||
-rwxr-xr-x | repo | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2187,7 +2187,7 @@ class Project(object): | |||
2187 | cmd.append(bundle_dst) | 2187 | cmd.append(bundle_dst) |
2188 | for f in remote.fetch: | 2188 | for f in remote.fetch: |
2189 | cmd.append(str(f)) | 2189 | cmd.append(str(f)) |
2190 | cmd.append('refs/tags/*:refs/tags/*') | 2190 | cmd.append('+refs/tags/*:refs/tags/*') |
2191 | 2191 | ||
2192 | ok = GitCommand(self, cmd, bare=True).Wait() == 0 | 2192 | ok = GitCommand(self, cmd, bare=True).Wait() == 0 |
2193 | if os.path.exists(bundle_dst): | 2193 | if os.path.exists(bundle_dst): |
@@ -536,7 +536,7 @@ def _Fetch(url, local, src, quiet): | |||
536 | err = None | 536 | err = None |
537 | cmd.append(src) | 537 | cmd.append(src) |
538 | cmd.append('+refs/heads/*:refs/remotes/origin/*') | 538 | cmd.append('+refs/heads/*:refs/remotes/origin/*') |
539 | cmd.append('refs/tags/*:refs/tags/*') | 539 | cmd.append('+refs/tags/*:refs/tags/*') |
540 | 540 | ||
541 | proc = subprocess.Popen(cmd, cwd=local, stderr=err) | 541 | proc = subprocess.Popen(cmd, cwd=local, stderr=err) |
542 | if err: | 542 | if err: |