Mercurial > hg
changeset 1872:d8a03e9b3776
merge with crew.
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Thu, 09 Mar 2006 16:27:21 -0800 |
parents | 258e3a7955b8 (current diff) 8a8ab47cccde (diff) |
children | 205f04b04ec6 |
files | |
diffstat | 2 files changed, 7 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Thu Mar 09 16:26:49 2006 -0800 +++ b/mercurial/commands.py Thu Mar 09 16:27:21 2006 -0800 @@ -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')),
--- a/mercurial/httprepo.py Thu Mar 09 16:26:49 2006 -0800 +++ b/mercurial/httprepo.py Thu Mar 09 16:27:21 2006 -0800 @@ -67,6 +67,9 @@ def dev(self): return -1 + def lock(self): + raise util.Abort(_('operation not supported over http')) + def do_cmd(self, cmd, **args): self.ui.debug(_("sending %s command\n") % cmd) q = {"cmd": cmd}