# HG changeset patch # User Giorgos Keramidas # Date 1155483324 -10800 # Node ID 982c3237c63daa832f10359ec5c342e331f29ca2 # Parent 0ffca0cb9f4b83181024ebc6e1d4c78e661c5592 Make clear that hg pull -r REV pulls "up to" a revision. The existing message was a bit confusing, making the reader believe that only the specific revision is pulled. diff -r 0ffca0cb9f4b -r 982c3237c63d mercurial/commands.py --- a/mercurial/commands.py Sun Aug 13 20:21:13 2006 +0300 +++ b/mercurial/commands.py Sun Aug 13 18:35:24 2006 +0300 @@ -2964,7 +2964,7 @@ ('n', 'newest-first', None, _('show newest record first')), ('', 'bundle', '', _('file to store the bundles into')), ('p', 'patch', None, _('show patch')), - ('r', 'rev', [], _('a specific revision you would like to pull')), + ('r', 'rev', [], _('a specific revision up to which you would like to pull')), ('', 'template', '', _('display with template')), ('e', 'ssh', '', _('specify ssh command to use')), ('', 'remotecmd', '', @@ -3039,7 +3039,7 @@ ('e', 'ssh', '', _('specify ssh command to use')), ('f', 'force', None, _('run even when remote repository is unrelated')), - ('r', 'rev', [], _('a specific revision you would like to pull')), + ('r', 'rev', [], _('a specific revision up to which you would like to pull')), ('', 'remotecmd', '', _('specify hg command to run on the remote side'))], _('hg pull [-u] [-r REV]... [-e FILE] [--remotecmd FILE] [SOURCE]')),