comparison mercurial/commands.py @ 2877:982c3237c63d

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.
author Giorgos Keramidas <keramida@ceid.upatras.gr>
date Sun, 13 Aug 2006 18:35:24 +0300
parents 3d6efcbbd1c9
children cf98cd70d2c4
comparison
equal deleted inserted replaced
2876:0ffca0cb9f4b 2877:982c3237c63d
2962 _('run even when remote repository is unrelated')), 2962 _('run even when remote repository is unrelated')),
2963 ('', 'style', '', _('display using template map file')), 2963 ('', 'style', '', _('display using template map file')),
2964 ('n', 'newest-first', None, _('show newest record first')), 2964 ('n', 'newest-first', None, _('show newest record first')),
2965 ('', 'bundle', '', _('file to store the bundles into')), 2965 ('', 'bundle', '', _('file to store the bundles into')),
2966 ('p', 'patch', None, _('show patch')), 2966 ('p', 'patch', None, _('show patch')),
2967 ('r', 'rev', [], _('a specific revision you would like to pull')), 2967 ('r', 'rev', [], _('a specific revision up to which you would like to pull')),
2968 ('', 'template', '', _('display with template')), 2968 ('', 'template', '', _('display with template')),
2969 ('e', 'ssh', '', _('specify ssh command to use')), 2969 ('e', 'ssh', '', _('specify ssh command to use')),
2970 ('', 'remotecmd', '', 2970 ('', 'remotecmd', '',
2971 _('specify hg command to run on the remote side'))], 2971 _('specify hg command to run on the remote side'))],
2972 _('hg incoming [-p] [-n] [-M] [-r REV]...' 2972 _('hg incoming [-p] [-n] [-M] [-r REV]...'
3037 [('u', 'update', None, 3037 [('u', 'update', None,
3038 _('update the working directory to tip after pull')), 3038 _('update the working directory to tip after pull')),
3039 ('e', 'ssh', '', _('specify ssh command to use')), 3039 ('e', 'ssh', '', _('specify ssh command to use')),
3040 ('f', 'force', None, 3040 ('f', 'force', None,
3041 _('run even when remote repository is unrelated')), 3041 _('run even when remote repository is unrelated')),
3042 ('r', 'rev', [], _('a specific revision you would like to pull')), 3042 ('r', 'rev', [], _('a specific revision up to which you would like to pull')),
3043 ('', 'remotecmd', '', 3043 ('', 'remotecmd', '',
3044 _('specify hg command to run on the remote side'))], 3044 _('specify hg command to run on the remote side'))],
3045 _('hg pull [-u] [-r REV]... [-e FILE] [--remotecmd FILE] [SOURCE]')), 3045 _('hg pull [-u] [-r REV]... [-e FILE] [--remotecmd FILE] [SOURCE]')),
3046 "^push": 3046 "^push":
3047 (push, 3047 (push,