move: --force flag forcibly moves, not copies stable
authorAnton Shestakov <av6@dwimlabs.net>
Wed, 03 Jul 2019 10:06:39 +0800
branchstable
changeset 42556 93fed084ce36
parent 42555 50eacdeea88c
child 42562 97ada9b8d51b
move: --force flag forcibly moves, not copies
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)