##// END OF EJS Templates
upper-case command line meta variables
Martin Geisler -
r8031:813a02a4 default
parent child Browse files
Show More
@@ -467,6 +467,6 b' cmdtable = {'
467 467 ('c', 'continue', False, _('continue an interrupted rebase')),
468 468 ('a', 'abort', False, _('abort an interrupted rebase')),] +
469 469 templateopts,
470 _('hg rebase [-s rev | -b rev] [-d rev] [--collapse] [--keep] '
470 _('hg rebase [-s REV | -b REV] [-d REV] [--collapse] [--keep] '
471 471 '[--keepbranches] | [-c] | [-a]')),
472 472 }
@@ -3230,7 +3230,7 b' table = {'
3230 3230 _('[OPTION]... PATTERN [FILE]...')),
3231 3231 "heads":
3232 3232 (heads,
3233 [('r', 'rev', '', _('show only heads which are descendants of rev')),
3233 [('r', 'rev', '', _('show only heads which are descendants of REV')),
3234 3234 ('a', 'active', False,
3235 3235 _('show only the active heads from open branches')),
3236 3236 ] + templateopts,
@@ -3276,7 +3276,7 b' table = {'
3276 3276 _('[-e CMD] [--remotecmd CMD] [DEST]')),
3277 3277 "locate":
3278 3278 (locate,
3279 [('r', 'rev', '', _('search the repository as it stood at rev')),
3279 [('r', 'rev', '', _('search the repository as it stood at REV')),
3280 3280 ('0', 'print0', None,
3281 3281 _('end filenames with NUL, for use with xargs')),
3282 3282 ('f', 'fullpath', None,
@@ -2,7 +2,7 b''
2 2
3 3 % Use continue and abort
4 4 hg rebase: cannot use both abort and continue
5 hg rebase [-s rev | -b rev] [-d rev] [--collapse] [--keep] [--keepbranches] | [-c] | [-a]
5 hg rebase [-s REV | -b REV] [-d REV] [--collapse] [--keep] [--keepbranches] | [-c] | [-a]
6 6
7 7 move changeset (and descendants) to a different branch
8 8
@@ -30,7 +30,7 b' use "hg -v help rebase" to show global o'
30 30
31 31 % Use continue and collapse
32 32 hg rebase: cannot use collapse with continue or abort
33 hg rebase [-s rev | -b rev] [-d rev] [--collapse] [--keep] [--keepbranches] | [-c] | [-a]
33 hg rebase [-s REV | -b REV] [-d REV] [--collapse] [--keep] [--keepbranches] | [-c] | [-a]
34 34
35 35 move changeset (and descendants) to a different branch
36 36
@@ -58,7 +58,7 b' use "hg -v help rebase" to show global o'
58 58
59 59 % Use continue/abort and dest/source
60 60 hg rebase: abort and continue do not allow specifying revisions
61 hg rebase [-s rev | -b rev] [-d rev] [--collapse] [--keep] [--keepbranches] | [-c] | [-a]
61 hg rebase [-s REV | -b REV] [-d REV] [--collapse] [--keep] [--keepbranches] | [-c] | [-a]
62 62
63 63 move changeset (and descendants) to a different branch
64 64
@@ -86,7 +86,7 b' use "hg -v help rebase" to show global o'
86 86
87 87 % Use source and base
88 88 hg rebase: cannot specify both a revision and a base
89 hg rebase [-s rev | -b rev] [-d rev] [--collapse] [--keep] [--keepbranches] | [-c] | [-a]
89 hg rebase [-s REV | -b REV] [-d REV] [--collapse] [--keep] [--keepbranches] | [-c] | [-a]
90 90
91 91 move changeset (and descendants) to a different branch
92 92
General Comments 0
You need to be logged in to leave comments. Login now