Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Unified Diff: third_party/upload.py

Issue 2488823002: Default to not using --find-copies-harder (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/upload.py
diff --git a/third_party/upload.py b/third_party/upload.py
index 7ff42cc96450528b53be2e8e5c542cfcf038e610..c44293440ba2a4b2e8e34f8a8cef0b038f5124f1 100755
--- a/third_party/upload.py
+++ b/third_party/upload.py
@@ -674,9 +674,9 @@ group.add_option("--git_similarity", action="store", dest="git_similarity",
metavar="SIM", type="int", default=50,
help=("Set the minimum similarity percentage for detecting "
"renames and copies. See `git diff -C`. (default 50)."))
-group.add_option("--git_only_search_patch", action="store_false", default=True,
+group.add_option("--git_find_copies_harder", action="store_true", default=False,
dest='git_find_copies_harder',
- help="Removes --find-copies-harder when seaching for copies")
+ help="Adds --find-copies-harder when seaching for copies")
group.add_option("--git_no_find_copies", action="store_false", default=True,
dest="git_find_copies",
help=("Prevents git from looking for copies (default off)."))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698