Skip to content

Commit 7fa149b

Browse files
jowang4105LUCI
authored and
LUCI
committed
upload: Skip upload if merge branch doesn't match project revision and
dest_branch. - This still prevents the case mentioned here: https://gerrit-review.googlesource.com/c/50300 while also supporting dest_branch. - Update _GetMergeBranch to get merge branches for any branch, not just the one we happen to run `repo upload` in. (e.g. for uploading multiple branches) Bug: b/27955930 Change-Id: Ia8ee1d6a83a783c984bb2eb308bb11b3a721a95d Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/360794 Commit-Queue: Joanna Wang <[email protected]> Reviewed-by: Mike Frysinger <[email protected]> Tested-by: Joanna Wang <[email protected]>
1 parent a56e0e1 commit 7fa149b

File tree

1 file changed

+21
-15
lines changed

1 file changed

+21
-15
lines changed

subcmds/upload.py

+21-15
Original file line numberDiff line numberDiff line change
@@ -484,19 +484,24 @@ def _ExpandCommaList(value):
484484

485485
destination = opt.dest_branch or branch.project.dest_branch
486486

487-
# Make sure our local branch is not setup to track a different remote branch
488-
merge_branch = self._GetMergeBranch(branch.project)
489-
if destination:
487+
if branch.project.dest_branch and not opt.dest_branch:
488+
489+
merge_branch = self._GetMergeBranch(
490+
branch.project, local_branch=branch.name)
491+
490492
full_dest = destination
491493
if not full_dest.startswith(R_HEADS):
492494
full_dest = R_HEADS + full_dest
493495

494-
if not opt.dest_branch and merge_branch and merge_branch != full_dest:
495-
print('merge branch %s does not match destination branch %s'
496-
% (merge_branch, full_dest))
496+
# If the merge branch of the local branch is different from the
497+
# project's revision AND destination, this might not be intentional.
498+
if (merge_branch and merge_branch != branch.project.revisionExpr
499+
and merge_branch != full_dest):
500+
print(f'For local branch {branch.name}: merge branch '
501+
f'{merge_branch} does not match destination branch '
502+
f'{destination}')
497503
print('skipping upload.')
498-
print('Please use `--destination %s` if this is intentional'
499-
% destination)
504+
print(f'Please use `--destination {destination}` if this is intentional')
500505
branch.uploaded = False
501506
continue
502507

@@ -546,13 +551,14 @@ def _ExpandCommaList(value):
546551
if have_errors:
547552
sys.exit(1)
548553

549-
def _GetMergeBranch(self, project):
550-
p = GitCommand(project,
551-
['rev-parse', '--abbrev-ref', 'HEAD'],
552-
capture_stdout=True,
553-
capture_stderr=True)
554-
p.Wait()
555-
local_branch = p.stdout.strip()
554+
def _GetMergeBranch(self, project, local_branch=None):
555+
if local_branch is None:
556+
p = GitCommand(project,
557+
['rev-parse', '--abbrev-ref', 'HEAD'],
558+
capture_stdout=True,
559+
capture_stderr=True)
560+
p.Wait()
561+
local_branch = p.stdout.strip()
556562
p = GitCommand(project,
557563
['config', '--get', 'branch.%s.merge' % local_branch],
558564
capture_stdout=True,

0 commit comments

Comments
 (0)