diff -r b8d54f4625cb -r eb7bd7d64a9d mercurial/commands.py --- 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)