# HG changeset patch # User Martin Geisler # Date 1257560183 -3600 # Node ID 2ebe679fec212d664e059c6bca7ff0b973a606a9 # Parent 75cff8f12910af63b200d5950ed09e8186d8c2dd commands: use enumerated lists in help texts diff -r 75cff8f12910 -r 2ebe679fec21 mercurial/commands.py --- a/mercurial/commands.py Sat Nov 07 03:14:56 2009 +0100 +++ b/mercurial/commands.py Sat Nov 07 03:16:23 2009 +0100 @@ -599,7 +599,7 @@ If the -U/--noupdate option is specified, the new clone will contain only a repository (.hg) and no working copy (the working copy parent will be the null changeset). Otherwise, clone will initially check - out (in order of precedence): :: + out (in order of precedence): a) the changeset, tag or branch specified with -u/--updaterev b) the changeset, tag or branch given with the first -r/--rev @@ -3148,17 +3148,17 @@ uncommitted changes: 1. If neither -c/--check nor -C/--clean is specified, uncommitted - changes are merged into the requested changeset, and the merged result - is left uncommitted. Updating and merging will occur only if the - requested changeset is an ancestor or descendant of the parent - changeset. Otherwise, the update is aborted and the uncommitted changes - are preserved. + changes are merged into the requested changeset, and the merged result + is left uncommitted. Updating and merging will occur only if the + requested changeset is an ancestor or descendant of the parent + changeset. Otherwise, the update is aborted and the uncommitted changes + are preserved. 2. With the -c/--check option, the update is aborted and the - uncommitted changes are preserved. + uncommitted changes are preserved. 3. With the -C/--clean option, uncommitted changes are discarded and - the working directory is updated to the requested changeset. + the working directory is updated to the requested changeset. Use null as the changeset to remove the working directory (like 'hg clone -U').