changeset 42556:93fed084ce36 stable

move: --force flag forcibly moves, not copies
author Anton Shestakov <av6@dwimlabs.net>
date Wed, 03 Jul 2019 10:06:39 +0800
parents 50eacdeea88c
children 97ada9b8d51b
files mercurial/commands.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)