Documentation clarification for --update option to pull and unbundle
authorThomas Arendsen Hein <thomas@intevation.de>
Fri, 29 Sep 2006 23:14:22 +0200
changeset 3191 a32f65549b9e
parent 3190 e18c3d08528d
child 3192 096f1c73cdc3
Documentation clarification for --update option to pull and unbundle
mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -2973,7 +2973,7 @@ table = {
     "^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 @@ table = {
     "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":