project: Return commit sha if detached HEAD
Change-Id: I80b7d5965749096b59e854f61e913aa74c857b99
This commit is contained in:
parent
720bd1e96b
commit
de1326a611
1 changed files with 5 additions and 1 deletions
|
@ -3835,7 +3835,11 @@ class Project:
|
|||
def GetHead(self):
|
||||
"""Return the ref that HEAD points to."""
|
||||
try:
|
||||
return self.rev_parse("--symbolic-full-name", HEAD)
|
||||
symbolic_head = self.rev_parse("--symbolic-full-name", HEAD)
|
||||
if symbolic_head == HEAD:
|
||||
# Detached HEAD. Return the commit SHA instead.
|
||||
return self.rev_parse(HEAD)
|
||||
return symbolic_head
|
||||
except GitError as e:
|
||||
path = self.GetDotgitPath(subpath=HEAD)
|
||||
raise NoManifestException(path, str(e))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue