comparison mercurial/commands.py @ 12699:0159a674a7bc

commands: add move alias for the rename command svn provides move, and it's also a standard tool on Windows.
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Mon, 11 Oct 2010 13:49:53 +0200
parents 14853ca7e11b
children d734b3470138
comparison
equal deleted inserted replaced
12697:14853ca7e11b 12699:0159a674a7bc
4314 [('A', 'after', None, _('record delete for missing files')), 4314 [('A', 'after', None, _('record delete for missing files')),
4315 ('f', 'force', None, 4315 ('f', 'force', None,
4316 _('remove (and delete) file even if added or modified')), 4316 _('remove (and delete) file even if added or modified')),
4317 ] + walkopts, 4317 ] + walkopts,
4318 _('[OPTION]... FILE...')), 4318 _('[OPTION]... FILE...')),
4319 "rename|mv": 4319 "rename|move|mv":
4320 (rename, 4320 (rename,
4321 [('A', 'after', None, _('record a rename that has already occurred')), 4321 [('A', 'after', None, _('record a rename that has already occurred')),
4322 ('f', 'force', None, 4322 ('f', 'force', None,
4323 _('forcibly copy over an existing managed file')), 4323 _('forcibly copy over an existing managed file')),
4324 ] + walkopts + dryrunopts, 4324 ] + walkopts + dryrunopts,