mercurial/commands.py
changeset 42580 eb7bd7d64a9d
parent 42579 b8d54f4625cb
parent 42556 93fed084ce36
child 42581 bb135a784b70
--- a/mercurial/commands.py	Tue Jul 09 12:58:29 2019 +0300
+++ b/mercurial/commands.py	Tue Jul 09 10:09:46 2019 -0400
@@ -1872,7 +1872,7 @@
     [('A', 'after', None, _('record a copy that has already occurred')),
     ('f', 'force', None, _('forcibly copy over an existing managed file')),
     ] + walkopts + dryrunopts,
-    _('[OPTION]... [SOURCE]... DEST'),
+    _('[OPTION]... SOURCE... DEST'),
     helpcategory=command.CATEGORY_FILE_CONTENTS)
 def copy(ui, repo, *pats, **opts):
     """mark files as copied for the next commit
@@ -4699,7 +4699,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)