Mercurial > public > mercurial-scm > hg
diff mercurial/commands.py @ 2245:d2118a0926bd
Added -A as an alias for --after to hg remove, like for other commands.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Wed, 10 May 2006 19:23:19 +0200 |
parents | abd70a92e06f |
children | 827fcfe88b14 |
line wrap: on
line diff
--- a/mercurial/commands.py Wed May 10 18:53:32 2006 +0200 +++ b/mercurial/commands.py Wed May 10 19:23:19 2006 +0200 @@ -3021,7 +3021,7 @@ "recover": (recover, [], _('hg recover')), "^remove|rm": (remove, - [('', 'after', None, _('record remove that has already occurred')), + [('A', 'after', None, _('record remove that has already occurred')), ('f', 'force', None, _('remove file even if modified')), ('I', 'include', [], _('include names matching the given patterns')), ('X', 'exclude', [], _('exclude names matching the given patterns'))],