# HG changeset patch # User timeless # Date 2015-12-18 18:31:45 # Node ID 97cc045f1cfe05e80382050f0827195a9cab6e04 # Parent 2337958596e3fa4ffb4b736dae62fbe243670eff rebase: simplify documentation about heads diff --git a/hgext/rebase.py b/hgext/rebase.py --- a/hgext/rebase.py +++ b/hgext/rebase.py @@ -134,12 +134,9 @@ def rebase(ui, repo, **opts): Some changesets may be dropped if they do not contribute changes (e.g. merges from the destination branch). - One result of the rules for selecting the destination changeset - and source branch is that, unlike ``merge``, rebase will do - nothing if you are at the branch tip of a named branch - with two heads. You need to explicitly specify source and/or - destination (or ``update`` to the other head, if it's the head of - the intended source branch). + Unlike ``merge``, rebase will do nothing if you are at the branch tip of + a named branch with two heads. You will need to explicitly specify source + and/or destination. If a rebase is interrupted to manually resolve a merge, it can be continued with --continue/-c or aborted with --abort/-a.