Mercurial > hg-stable
changeset 10210:43f8abcec42d stable
commands: fix help string for pull -u and unbundle -u.
They update to new branch head, not new tip -- same as 'hg update'.
author | Greg Ward <greg-hg@gerg.ca> |
---|---|
date | Tue, 05 Jan 2010 15:07:38 -0500 |
parents | c9194a7d7d3e |
children | a474f950357b |
files | mercurial/commands.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Mon Jan 04 23:45:45 2010 +0100 +++ b/mercurial/commands.py Tue Jan 05 15:07:38 2010 -0500 @@ -3577,7 +3577,7 @@ "^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 @@ "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,