Mercurial > hg
changeset 3198:a32f65549b9e
Documentation clarification for --update option to pull and unbundle
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 29 Sep 2006 23:14:22 +0200 |
parents | e18c3d08528d |
children | 096f1c73cdc3 |
files | mercurial/commands.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Fri Sep 29 13:01:19 2006 -0700 +++ b/mercurial/commands.py Fri Sep 29 23:14:22 2006 +0200 @@ -2973,7 +2973,7 @@ "^pull": (pull, [('u', 'update', None, - _('update the working directory to tip after pull')), + _('update to new tip if changesets were pulled')), ('f', 'force', None, _('run even when remote repository is unrelated')), ('r', 'rev', [], _('a specific revision up to which you would like to pull')), @@ -3070,7 +3070,7 @@ "unbundle": (unbundle, [('u', 'update', None, - _('update the working directory to tip after unbundle'))], + _('update to new tip if changesets were unbundled'))], _('hg unbundle [-u] FILE')), "debugundo|undo": (undo, [], _('hg undo')), "^update|up|checkout|co":