Mercurial > hg-stable
changeset 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 | 6a3d5a56f19c |
children | 8a8ab47cccde |
files | mercurial/commands.py |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
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')),