diff mercurial/commands.py @ 3191: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
line wrap: on
line diff
--- 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":