##// END OF EJS Templates
commands: add missing options in command line help
timeless@mozdev.org -
r9952:5b149c88 stable
parent child Browse files
Show More
@@ -3346,7 +3346,7 b' table = {'
3346 3346 ('s', 'skip', False, _('skip testing changeset')),
3347 3347 ('c', 'command', '', _('use command to check changeset state')),
3348 3348 ('U', 'noupdate', False, _('do not update to target'))],
3349 _("[-gbsr] [-c CMD] [REV]")),
3349 _("[-gbsr] [-U] [-c CMD] [REV]")),
3350 3350 "branch":
3351 3351 (branch,
3352 3352 [('f', 'force', None,
@@ -3359,7 +3359,7 b' table = {'
3359 3359 _('show only branches that have unmerged heads')),
3360 3360 ('c', 'closed', False,
3361 3361 _('show normal and closed branches'))],
3362 _('[-a]')),
3362 _('[-ac]')),
3363 3363 "bundle":
3364 3364 (bundle,
3365 3365 [('f', 'force', None,
@@ -3371,7 +3371,7 b' table = {'
3371 3371 ('a', 'all', None, _('bundle all changesets in the repository')),
3372 3372 ('t', 'type', 'bzip2', _('bundle compression type to use')),
3373 3373 ] + remoteopts,
3374 _('[-f] [-a] [-r REV]... [--base REV]... FILE [DEST]')),
3374 _('[-f] [-t TYPE] [-a] [-r REV]... [--base REV]... FILE [DEST]')),
3375 3375 "cat":
3376 3376 (cat,
3377 3377 [('o', 'output', '', _('print output to file with formatted name')),
@@ -3481,7 +3481,7 b' table = {'
3481 3481 ('c', 'closed', False,
3482 3482 _('show normal and closed branch heads')),
3483 3483 ] + templateopts,
3484 _('[-r STARTREV] [REV]...')),
3484 _('[-ac] [-r STARTREV] [REV]...')),
3485 3485 "help": (help_, [], _('[TOPIC]')),
3486 3486 "identify|id":
3487 3487 (identify,
@@ -3558,7 +3558,7 b' table = {'
3558 3558 ('r', 'rev', '', _('revision to merge')),
3559 3559 ('P', 'preview', None,
3560 3560 _('review revisions to merge (no merge is performed)'))],
3561 _('[-f] [[-r] REV]')),
3561 _('[-P] [-f] [[-r] REV]')),
3562 3562 "outgoing|out":
3563 3563 (outgoing,
3564 3564 [('f', 'force', None,
@@ -3678,14 +3678,14 b' table = {'
3678 3678 # -l/--local is already there, commitopts cannot be used
3679 3679 ('m', 'message', '', _('use <text> as commit message')),
3680 3680 ] + commitopts2,
3681 _('[-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')),
3681 _('[-f] [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')),
3682 3682 "tags": (tags, [], ''),
3683 3683 "tip":
3684 3684 (tip,
3685 3685 [('p', 'patch', None, _('show patch')),
3686 3686 ('g', 'git', None, _('use git extended diff format')),
3687 3687 ] + templateopts,
3688 _('[-p]')),
3688 _('[-p] [-g]')),
3689 3689 "unbundle":
3690 3690 (unbundle,
3691 3691 [('u', 'update', None,
General Comments 0
You need to be logged in to leave comments. Login now