summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/manifest-format.txt2
-rw-r--r--git_config.py6
-rw-r--r--project.py22
3 files changed, 17 insertions, 13 deletions
diff --git a/docs/manifest-format.txt b/docs/manifest-format.txt
index d5c6a024..1aa93965 100644
--- a/docs/manifest-format.txt
+++ b/docs/manifest-format.txt
@@ -244,7 +244,7 @@ whole ref space.
244 244
245Attribute `sync-s`: Set to true to also sync sub-projects. 245Attribute `sync-s`: Set to true to also sync sub-projects.
246 246
247Attribute `upstream`: Name of the Git branch in which a sha1 247Attribute `upstream`: Name of the Git ref in which a sha1
248can be found. Used when syncing a revision locked manifest in 248can be found. Used when syncing a revision locked manifest in
249-c mode to avoid having to sync the entire ref space. 249-c mode to avoid having to sync the entire ref space.
250 250
diff --git a/git_config.py b/git_config.py
index aa07d1b7..b4145e8c 100644
--- a/git_config.py
+++ b/git_config.py
@@ -619,8 +619,6 @@ class Remote(object):
619 """ 619 """
620 if IsId(rev): 620 if IsId(rev):
621 return rev 621 return rev
622 if rev.startswith(R_TAGS):
623 return rev
624 622
625 if not rev.startswith('refs/'): 623 if not rev.startswith('refs/'):
626 rev = R_HEADS + rev 624 rev = R_HEADS + rev
@@ -628,6 +626,10 @@ class Remote(object):
628 for spec in self.fetch: 626 for spec in self.fetch:
629 if spec.SourceMatches(rev): 627 if spec.SourceMatches(rev):
630 return spec.MapSource(rev) 628 return spec.MapSource(rev)
629
630 if not rev.startswith(R_HEADS):
631 return rev
632
631 raise GitError('remote %s does not have %s' % (self.name, rev)) 633 raise GitError('remote %s does not have %s' % (self.name, rev))
632 634
633 def WritesTo(self, ref): 635 def WritesTo(self, ref):
diff --git a/project.py b/project.py
index 316ce7ba..a84857e6 100644
--- a/project.py
+++ b/project.py
@@ -1752,10 +1752,11 @@ class Project(object):
1752 if depth: 1752 if depth:
1753 current_branch_only = True 1753 current_branch_only = True
1754 1754
1755 if ID_RE.match(self.revisionExpr) is not None:
1756 is_sha1 = True
1757
1755 if current_branch_only: 1758 if current_branch_only:
1756 if ID_RE.match(self.revisionExpr) is not None: 1759 if self.revisionExpr.startswith(R_TAGS):
1757 is_sha1 = True
1758 elif self.revisionExpr.startswith(R_TAGS):
1759 # this is a tag and its sha1 value should never change 1760 # this is a tag and its sha1 value should never change
1760 tag_name = self.revisionExpr[len(R_TAGS):] 1761 tag_name = self.revisionExpr[len(R_TAGS):]
1761 1762
@@ -1838,13 +1839,14 @@ class Project(object):
1838 elif tag_name is not None: 1839 elif tag_name is not None:
1839 spec.append('tag') 1840 spec.append('tag')
1840 spec.append(tag_name) 1841 spec.append(tag_name)
1841 else: 1842
1842 branch = self.revisionExpr 1843 branch = self.revisionExpr
1843 if is_sha1: 1844 if is_sha1:
1844 branch = self.upstream 1845 branch = self.upstream
1845 if branch.startswith(R_HEADS): 1846 if branch is not None and branch.strip():
1846 branch = branch[len(R_HEADS):] 1847 if not branch.startswith('refs/'):
1847 spec.append(str((u'+refs/heads/%s:' % branch) + remote.ToLocal('refs/heads/%s' % branch))) 1848 branch = R_HEADS + branch
1849 spec.append(str((u'+%s:' % branch) + remote.ToLocal(branch)))
1848 cmd.extend(spec) 1850 cmd.extend(spec)
1849 1851
1850 shallowfetch = self.config.GetString('repo.shallowfetch') 1852 shallowfetch = self.config.GetString('repo.shallowfetch')