[PATCH] addremove: mention --similarity defaults to 100 (issue3430)

Patrick Mezard patrick at mezard.eu
Mon Jul 23 12:10:00 CDT 2012


# HG changeset patch
# User Patrick Mezard <patrick at mezard.eu>
# Date 1343063012 -7200
# Node ID 558aee1f533e7a9247552564471435e9c8ca024c
# Parent  23b247234454c945ff0b907dd6195a385c134468
addremove: mention --similarity defaults to 100 (issue3430)

diff --git a/mercurial/commands.py b/mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -190,15 +190,15 @@
     ``.hgignore``. As with add, these changes take effect at the next
     commit.
 
-    Use the -s/--similarity option to detect renamed files. With a
-    parameter greater than 0, this compares every removed file with
-    every added file and records those similar enough as renames. This
+    Use the -s/--similarity option to detect renamed files. This
     option takes a percentage between 0 (disabled) and 100 (files must
-    be identical) as its parameter. Detecting renamed files this way
+    be identical) as its parameter. With a parameter greater than 0,
+    this compares every removed file with every added file and records
+    those similar enough as renames. Detecting renamed files this way
     can be expensive. After using this option, :hg:`status -C` can be
-    used to check which files were identified as moved or renamed.
-    If this option is not specified, only renames of identical files
-    are detected.
+    used to check which files were identified as moved or renamed. If
+    not specified, -s/--similarity defaults to 100 and only renames of
+    identical files are detected.
 
     Returns 0 if all files are successfully added.
     """


More information about the Mercurial-devel mailing list