--- a/mercurial/commands.py Sat Nov 28 23:23:16 2009 +0100
+++ b/mercurial/commands.py Sat Nov 28 23:44:18 2009 +0100
@@ -3346,7 +3346,7 @@
('s', 'skip', False, _('skip testing changeset')),
('c', 'command', '', _('use command to check changeset state')),
('U', 'noupdate', False, _('do not update to target'))],
- _("[-gbsr] [-c CMD] [REV]")),
+ _("[-gbsr] [-U] [-c CMD] [REV]")),
"branch":
(branch,
[('f', 'force', None,
@@ -3359,7 +3359,7 @@
_('show only branches that have unmerged heads')),
('c', 'closed', False,
_('show normal and closed branches'))],
- _('[-a]')),
+ _('[-ac]')),
"bundle":
(bundle,
[('f', 'force', None,
@@ -3371,7 +3371,7 @@
('a', 'all', None, _('bundle all changesets in the repository')),
('t', 'type', 'bzip2', _('bundle compression type to use')),
] + remoteopts,
- _('[-f] [-a] [-r REV]... [--base REV]... FILE [DEST]')),
+ _('[-f] [-t TYPE] [-a] [-r REV]... [--base REV]... FILE [DEST]')),
"cat":
(cat,
[('o', 'output', '', _('print output to file with formatted name')),
@@ -3481,7 +3481,7 @@
('c', 'closed', False,
_('show normal and closed branch heads')),
] + templateopts,
- _('[-r STARTREV] [REV]...')),
+ _('[-ac] [-r STARTREV] [REV]...')),
"help": (help_, [], _('[TOPIC]')),
"identify|id":
(identify,
@@ -3558,7 +3558,7 @@
('r', 'rev', '', _('revision to merge')),
('P', 'preview', None,
_('review revisions to merge (no merge is performed)'))],
- _('[-f] [[-r] REV]')),
+ _('[-P] [-f] [[-r] REV]')),
"outgoing|out":
(outgoing,
[('f', 'force', None,
@@ -3678,14 +3678,14 @@
# -l/--local is already there, commitopts cannot be used
('m', 'message', '', _('use <text> as commit message')),
] + commitopts2,
- _('[-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')),
+ _('[-f] [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')),
"tags": (tags, [], ''),
"tip":
(tip,
[('p', 'patch', None, _('show patch')),
('g', 'git', None, _('use git extended diff format')),
] + templateopts,
- _('[-p]')),
+ _('[-p] [-g]')),
"unbundle":
(unbundle,
[('u', 'update', None,