Mercurial > public > mercurial-scm > hg
diff mercurial/commands.py @ 1869:42c76ec7a8d4
Reordered options for remove, fixed synopsis for rename.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Thu, 09 Mar 2006 08:27:49 +0100 |
parents | 91ebf29c1595 |
children | 2f4a0734c100 |
line wrap: on
line diff
--- a/mercurial/commands.py Wed Mar 08 18:48:40 2006 -0800 +++ b/mercurial/commands.py Thu Mar 09 08:27:49 2006 +0100 @@ -2563,9 +2563,9 @@ "recover": (recover, [], _('hg recover')), "^remove|rm": (remove, - [('I', 'include', [], _('include names matching the given patterns')), - ('X', 'exclude', [], _('exclude names matching the given patterns')), - ('f', 'force', None, _('remove file even if modified'))], + [('f', 'force', None, _('remove file even if modified')), + ('I', 'include', [], _('include names matching the given patterns')), + ('X', 'exclude', [], _('exclude names matching the given patterns'))], _('hg remove [OPTION]... FILE...')), "rename|mv": (rename, @@ -2574,7 +2574,7 @@ _('forcibly copy over an existing managed file')), ('I', 'include', [], _('include names matching the given patterns')), ('X', 'exclude', [], _('exclude names matching the given patterns'))], - _('hg rename [OPTION]... [SOURCE]... DEST')), + _('hg rename [OPTION]... SOURCE... DEST')), "^revert": (revert, [('r', 'rev', '', _('revision to revert to')),