Mercurial > hg
changeset 13473:bbdd858e3229 stable
backout: clarify which changesets are new in help text
Plus another wording tweak ("default behavior -> "behavior without
--merge").
Suggested by Kevin Bullock.
author | Jonathan Nieder <jrnieder@gmail.com> |
---|---|
date | Fri, 11 Feb 2011 21:17:27 -0600 |
parents | 6c70ca0b7e07 |
children | 6c2e476b7a11 |
files | mercurial/commands.py |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Fri Feb 25 11:39:19 2011 +0100 +++ b/mercurial/commands.py Fri Feb 11 21:17:27 2011 -0600 @@ -207,16 +207,16 @@ Prepare a new changeset with the effect of REV undone in the current working directory. - If REV is the parent of the working directory, then this changeset + If REV is the parent of the working directory, then this new changeset is committed automatically. Otherwise, hg needs to merge the changes and the merged result is left uncommitted. By default, the pending changeset will have one parent, maintaining a linear history. With --merge, the pending changeset will instead have two parents: the old parent of the working - directory and a child of REV that simply undoes REV. - - Before version 1.7, the default behavior was equivalent to + directory and a new child of REV that simply undoes REV. + + Before version 1.7, the behavior without --merge was equivalent to specifying --merge followed by :hg:`update --clean .` to cancel the merge and leave the child of REV as a head to be merged separately.