Make clear that hg pull -r REV pulls "up to" a revision.
authorGiorgos Keramidas <keramida@ceid.upatras.gr>
Sun, 13 Aug 2006 18:35:24 +0300
changeset 2878 982c3237c63d
parent 2877 0ffca0cb9f4b
child 2879 66eff8355168
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.
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]')),