Skip to content

Commit

Permalink
git-p4: work with a detached head
Browse files Browse the repository at this point in the history
When submitting, git-p4 finds the current branch in
order to know if it is allowed to submit (configuration
"git-p4.allowSubmit").

On a detached head, detecting the branch would fail, and
git-p4 would report a cryptic error.

This change teaches git-p4 to recognise a detached head and
submit successfully.

Signed-off-by: Luke Diamand <luke@diamand.org>
Signed-off-by: Jeff King <peff@peff.net>
  • Loading branch information
luked99 authored and peff committed Nov 24, 2015
1 parent cbff4b2 commit 00ad6e3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
23 changes: 16 additions & 7 deletions git-p4.py
Expand Up @@ -544,7 +544,12 @@ def p4Where(depotPath):
return clientPath

def currentGitBranch():
return read_pipe("git name-rev HEAD").split(" ")[1].strip()
retcode = system(["git", "symbolic-ref", "-q", "HEAD"], ignore_error=True)
if retcode != 0:
# on a detached head
return None
else:
return read_pipe(["git", "name-rev", "HEAD"]).split(" ")[1].strip()

def isValidGitDir(path):
if (os.path.exists(path + "/HEAD")
Expand Down Expand Up @@ -1653,18 +1658,17 @@ def exportGitTags(self, gitTags):
def run(self, args):
if len(args) == 0:
self.master = currentGitBranch()
if len(self.master) == 0 or not gitBranchExists("refs/heads/%s" % self.master):
die("Detecting current git branch failed!")
elif len(args) == 1:
self.master = args[0]
if not branchExists(self.master):
die("Branch %s does not exist" % self.master)
else:
return False

allowSubmit = gitConfig("git-p4.allowSubmit")
if len(allowSubmit) > 0 and not self.master in allowSubmit.split(","):
die("%s is not in git-p4.allowSubmit" % self.master)
if self.master:
allowSubmit = gitConfig("git-p4.allowSubmit")
if len(allowSubmit) > 0 and not self.master in allowSubmit.split(","):
die("%s is not in git-p4.allowSubmit" % self.master)

[upstream, settings] = findUpstreamBranchPoint()
self.depotPath = settings['depot-paths'][0]
Expand Down Expand Up @@ -1732,7 +1736,12 @@ def run(self, args):
self.check()

commits = []
for line in read_pipe_lines(["git", "rev-list", "--no-merges", "%s..%s" % (self.origin, self.master)]):
if self.master:
commitish = self.master
else:
commitish = 'HEAD'

for line in read_pipe_lines(["git", "rev-list", "--no-merges", "%s..%s" % (self.origin, commitish)]):
commits.append(line.strip())
commits.reverse()

Expand Down
2 changes: 1 addition & 1 deletion t/t9800-git-p4-basic.sh
Expand Up @@ -241,7 +241,7 @@ test_expect_success 'unresolvable host in P4PORT should display error' '
)
'

test_expect_failure 'submit from detached head' '
test_expect_success 'submit from detached head' '
test_when_finished cleanup_git &&
git p4 clone --dest="$git" //depot &&
(
Expand Down

0 comments on commit 00ad6e3

Please sign in to comment.