# HG changeset patch # User Greg Ward # Date 2010-01-05 20:07:38 # Node ID 43f8abcec42df991ba6a953c9b1fa28be2e5d66d # Parent c9194a7d7d3e37777f0cca76df59f28416397f12 commands: fix help string for pull -u and unbundle -u. They update to new branch head, not new tip -- same as 'hg update'. diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -3577,7 +3577,7 @@ table = { "^pull": (pull, [('u', 'update', None, - _('update to new tip if changesets were pulled')), + _('update to new branch head if changesets were pulled')), ('f', 'force', None, _('run even when remote repository is unrelated')), ('r', 'rev', [], @@ -3689,7 +3689,7 @@ table = { "unbundle": (unbundle, [('u', 'update', None, - _('update to new tip if changesets were unbundled'))], + _('update to new branch head if changesets were unbundled'))], _('[-u] FILE...')), "^update|up|checkout|co": (update,