# HG changeset patch # User Anton Shestakov # Date 1562119599 -28800 # Node ID 93fed084ce360a8ed696b9be7d3b7fe8e47a1b5f # Parent 50eacdeea88c97c2269ed1fa02413ac93201a2d8 move: --force flag forcibly moves, not copies diff -r 50eacdeea88c -r 93fed084ce36 mercurial/commands.py --- a/mercurial/commands.py Wed Jul 03 10:01:51 2019 +0800 +++ b/mercurial/commands.py Wed Jul 03 10:06:39 2019 +0800 @@ -4742,7 +4742,7 @@ @command('rename|move|mv', [('A', 'after', None, _('record a rename that has already occurred')), - ('f', 'force', None, _('forcibly copy over an existing managed file')), + ('f', 'force', None, _('forcibly move over an existing managed file')), ] + walkopts + dryrunopts, _('[OPTION]... SOURCE... DEST'), helpcategory=command.CATEGORY_WORKING_DIRECTORY)