--- a/mercurial/commands.py Mon Dec 31 18:20:34 2007 -0600
+++ b/mercurial/commands.py Tue Jan 01 11:19:15 2008 +0100
@@ -2742,18 +2742,19 @@
('r', 'rev', '', _('revision to backout')),
] + walkopts + commitopts + commitopts2,
_('hg backout [OPTION]... [-r] REV')),
- "bisect": (bisect,
- [('r', 'reset', False, _('reset bisect state')),
- ('g', 'good', False, _('mark changeset good')),
- ('b', 'bad', False, _('mark changeset bad')),
- ('s', 'skip', False, _('skip testing changeset')),
- ('U', 'noupdate', False, _('do not update to target'))],
- _("hg bisect [-gbsr] [REV]")),
+ "bisect":
+ (bisect,
+ [('r', 'reset', False, _('reset bisect state')),
+ ('g', 'good', False, _('mark changeset good')),
+ ('b', 'bad', False, _('mark changeset bad')),
+ ('s', 'skip', False, _('skip testing changeset')),
+ ('U', 'noupdate', False, _('do not update to target'))],
+ _("hg bisect [-gbsr] [REV]")),
"branch":
(branch,
[('f', 'force', None,
_('set branch name even if it shadows an existing branch'))],
- _('hg branch [NAME]')),
+ _('hg branch [-f] [NAME]')),
"branches":
(branches,
[('a', 'active', False,
@@ -2890,7 +2891,8 @@
('', 'import-branch', None,
_('Use any branch information in patch (implied by --exact)'))] + commitopts,
_('hg import [-p NUM] [-m MESSAGE] [-f] PATCH...')),
- "incoming|in": (incoming,
+ "incoming|in":
+ (incoming,
[('M', 'no-merges', None, _('do not show merges')),
('f', 'force', None,
_('run even when remote repository is unrelated')),
@@ -2936,15 +2938,18 @@
('', 'template', '', _('display with template')),
] + walkopts,
_('hg log [OPTION]... [FILE]')),
- "manifest": (manifest, [('r', 'rev', '', _('revision to display'))],
- _('hg manifest [-r REV]')),
+ "manifest":
+ (manifest,
+ [('r', 'rev', '', _('revision to display'))],
+ _('hg manifest [-r REV]')),
"^merge":
(merge,
[('f', 'force', None, _('force a merge with outstanding changes')),
('r', 'rev', '', _('revision to merge')),
],
_('hg merge [-f] [[-r] REV]')),
- "outgoing|out": (outgoing,
+ "outgoing|out":
+ (outgoing,
[('M', 'no-merges', None, _('do not show merges')),
('f', 'force', None,
_('run even when remote repository is unrelated')),