Added -A as an alias for --after to hg remove, like for other commands.

This commit is contained in:
Thomas Arendsen Hein 2006-05-10 19:23:19 +02:00
parent 2fe1d1ce64
commit 667b1d7a64

View File

@ -3021,7 +3021,7 @@ table = {
"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'))],