hg.rst
changeset 1688 5493b5425eba
parent 1668 86a2cb376ee9
child 1855 3880fb7d6d2a
--- a/hg.rst	Fri Feb 13 11:30:28 2015 +0200
+++ b/hg.rst	Tue Feb 24 00:18:17 2015 +0200
@@ -476,11 +476,15 @@
 
   $ hg pull --rebase
 
-Rebase draft (unpublished) changes over public changes::
+Rebase draft (unpublished) changes over public changes if one one head::
 
   $ hg rebase -s 'draft()' -d 'public()'
   $ hg up  # it possible that you isn't on a tip
 
+If you want to limit merge only to current branch::
+
+  $ hg rebase -s 'draft() & branch(.)' -d 'public() & branch(.)'
+
 Find greatest common ancestor of changesets.
 ============================================
 ::