@@ -484,19 +484,24 @@ def _ExpandCommaList(value):
484
484
485
485
destination = opt .dest_branch or branch .project .dest_branch
486
486
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
+
490
492
full_dest = destination
491
493
if not full_dest .startswith (R_HEADS ):
492
494
full_dest = R_HEADS + full_dest
493
495
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 } ' )
497
503
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' )
500
505
branch .uploaded = False
501
506
continue
502
507
@@ -546,13 +551,14 @@ def _ExpandCommaList(value):
546
551
if have_errors :
547
552
sys .exit (1 )
548
553
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 ()
556
562
p = GitCommand (project ,
557
563
['config' , '--get' , 'branch.%s.merge' % local_branch ],
558
564
capture_stdout = True ,
0 commit comments