Skip to content

Commit

Permalink
git p4: fail gracefully on sync with no master branch
Browse files Browse the repository at this point in the history
If --branch was used to build a repository with no
refs/remotes/p4/master, future syncs will not know
which branch to sync.  Notice this situation and
print a helpful error message.

Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Pete Wyckoff authored and Junio C Hamano committed Jan 15, 2013
1 parent 4749784 commit 5a8e84c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 7 deletions.
29 changes: 27 additions & 2 deletions git-p4.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,17 @@ def p4BranchesInGit(branchesAreInRemotes=True):

return branches

def branch_exists(branch):
"""Make sure that the given ref name really exists."""

cmd = [ "git", "rev-parse", "--symbolic", "--verify", branch ]
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, _ = p.communicate()
if p.returncode:
return False
# expect exactly one line of output: the branch name
return out.rstrip() == branch

def findUpstreamBranchPoint(head = "HEAD"):
branches = p4BranchesInGit()
# map from depot-path to branch name
Expand Down Expand Up @@ -2768,6 +2779,7 @@ def run(self, args):
print 'Syncing with origin first, using "git fetch origin"'
system("git fetch origin")

branch_arg_given = bool(self.branch)
if len(self.branch) == 0:
self.branch = self.refPrefix + "master"
if gitBranchExists("refs/heads/p4") and self.importIntoRemotes:
Expand Down Expand Up @@ -2961,8 +2973,21 @@ def run(self, args):
else:
# catch "git p4 sync" with no new branches, in a repo that
# does not have any existing p4 branches
if len(args) == 0 and not self.p4BranchesInGit:
die("No remote p4 branches. Perhaps you never did \"git p4 clone\" in here.");
if len(args) == 0:
if not self.p4BranchesInGit:
die("No remote p4 branches. Perhaps you never did \"git p4 clone\" in here.")

# The default branch is master, unless --branch is used to
# specify something else. Make sure it exists, or complain
# nicely about how to use --branch.
if not self.detectBranches:
if not branch_exists(self.branch):
if branch_arg_given:
die("Error: branch %s does not exist." % self.branch)
else:
die("Error: no branch %s; perhaps specify one with --branch." %
self.branch)

if self.verbose:
print "Getting p4 changes for %s...%s" % (', '.join(self.depotPaths),
self.changeRange)
Expand Down
9 changes: 4 additions & 5 deletions t/t9806-git-p4-options.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,13 @@ test_expect_success 'clone --branch should checkout master' '
)
'

test_expect_failure 'sync when branch is not called master should work' '
git p4 clone --branch=refs/remotes/p4/sb --dest="$git" //depot@2 &&
test_expect_success 'sync when no master branch prints a nice error' '
test_when_finished cleanup_git &&
git p4 clone --branch=refs/remotes/p4/sb --dest="$git" //depot@2 &&
(
cd "$git" &&
git p4 sync &&
git show -s --format=%s refs/remotes/p4/sb >show &&
grep "change 3" show
test_must_fail git p4 sync 2>err &&
grep "Error: no branch refs/remotes/p4/master" err
)
'

Expand Down

0 comments on commit 5a8e84c

Please sign in to comment.