diff hgext/rebase.py @ 31380:65d93d712777

rebase: allow rebasing children of wd to wd if a new branch has been set (BC) The named branch of the leaf changeset can be changed by updating to it, setting the branch, and amending. But previously, there was no good way to *just* change the branch of several linear changes. If rebasing changes with another parent to '.', it would pick up a pending branch change up. But when rebasing changes that have the same parent, it would fail with 'nothing to rebase', even when the branch name was set differently. To fix this, allow rebasing to same parent when a branch has been set.
author Mads Kiilerich <mads@kiilerich.com>
date Sun, 12 Mar 2017 16:44:01 -0700
parents f59b6cf663a9
children 361bccce566a
line wrap: on
line diff
--- a/hgext/rebase.py	Sun Mar 12 16:41:46 2017 -0700
+++ b/hgext/rebase.py	Sun Mar 12 16:44:01 2017 -0700
@@ -1224,7 +1224,12 @@
         if commonbase == root:
             raise error.Abort(_('source is ancestor of destination'))
         if commonbase == dest:
-            samebranch = root.branch() == dest.branch()
+            wctx = repo[None]
+            if dest == wctx.p1():
+                # when rebasing to '.', it will use the current wd branch name
+                samebranch = root.branch() == wctx.branch()
+            else:
+                samebranch = root.branch() == dest.branch()
             if not collapse and samebranch and root in dest.children():
                 repo.ui.debug('source is a child of destination\n')
                 return None