Show More
@@ -2887,7 +2887,7 b' table = {' | |||||
2887 | [('f', 'force', None, |
|
2887 | [('f', 'force', None, | |
2888 | _('run even when remote repository is unrelated')), |
|
2888 | _('run even when remote repository is unrelated')), | |
2889 | ('r', 'rev', [], |
|
2889 | ('r', 'rev', [], | |
2890 | _('a changeset you would like to bundle')), |
|
2890 | _('a changeset up to which you would like to bundle')), | |
2891 | ('', 'base', [], |
|
2891 | ('', 'base', [], | |
2892 | _('a base changeset to specify instead of a destination')), |
|
2892 | _('a base changeset to specify instead of a destination')), | |
2893 | ('a', 'all', None, |
|
2893 | ('a', 'all', None, | |
@@ -3039,7 +3039,8 b' table = {' | |||||
3039 | _('run even when remote repository is unrelated')), |
|
3039 | _('run even when remote repository is unrelated')), | |
3040 | ('n', 'newest-first', None, _('show newest record first')), |
|
3040 | ('n', 'newest-first', None, _('show newest record first')), | |
3041 | ('', 'bundle', '', _('file to store the bundles into')), |
|
3041 | ('', 'bundle', '', _('file to store the bundles into')), | |
3042 | ('r', 'rev', [], _('a specific revision up to which you would like to pull')), |
|
3042 | ('r', 'rev', [], | |
|
3043 | _('a specific revision up to which you would like to pull')), | |||
3043 | ] + logopts + remoteopts, |
|
3044 | ] + logopts + remoteopts, | |
3044 | _('hg incoming [-p] [-n] [-M] [-f] [-r REV]...' |
|
3045 | _('hg incoming [-p] [-n] [-M] [-f] [-r REV]...' | |
3045 | ' [--bundle FILENAME] [SOURCE]')), |
|
3046 | ' [--bundle FILENAME] [SOURCE]')), | |
@@ -3087,7 +3088,8 b' table = {' | |||||
3087 | (outgoing, |
|
3088 | (outgoing, | |
3088 | [('f', 'force', None, |
|
3089 | [('f', 'force', None, | |
3089 | _('run even when remote repository is unrelated')), |
|
3090 | _('run even when remote repository is unrelated')), | |
3090 | ('r', 'rev', [], _('a specific revision you would like to push')), |
|
3091 | ('r', 'rev', [], | |
|
3092 | _('a specific revision up to which you would like to push')), | |||
3091 | ('n', 'newest-first', None, _('show newest record first')), |
|
3093 | ('n', 'newest-first', None, _('show newest record first')), | |
3092 | ] + logopts + remoteopts, |
|
3094 | ] + logopts + remoteopts, | |
3093 | _('hg outgoing [-M] [-p] [-n] [-f] [-r REV]... [DEST]')), |
|
3095 | _('hg outgoing [-M] [-p] [-n] [-f] [-r REV]... [DEST]')), | |
@@ -3110,7 +3112,8 b' table = {' | |||||
3110 | "^push": |
|
3112 | "^push": | |
3111 | (push, |
|
3113 | (push, | |
3112 | [('f', 'force', None, _('force push')), |
|
3114 | [('f', 'force', None, _('force push')), | |
3113 | ('r', 'rev', [], _('a specific revision you would like to push')), |
|
3115 | ('r', 'rev', [], | |
|
3116 | _('a specific revision up to which you would like to push')), | |||
3114 | ] + remoteopts, |
|
3117 | ] + remoteopts, | |
3115 | _('hg push [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [DEST]')), |
|
3118 | _('hg push [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [DEST]')), | |
3116 | "recover": (recover, [], _('hg recover')), |
|
3119 | "recover": (recover, [], _('hg recover')), |
General Comments 0
You need to be logged in to leave comments.
Login now