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

Unified Diff: git_cl.py

Issue 2489963003: Don't --find-copies-harder when printing informational diff, either (Closed)
Patch Set: update test 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 | tests/git_cl_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index 5d4a6b96eb36f36b21bc2ba8c4b9341f4b86ba32..3f26f217f2872a9f92fa483aebaac06572669898 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -725,8 +725,7 @@ def print_stats(similarity, find_copies, args):
del env['GIT_EXTERNAL_DIFF']
if find_copies:
- similarity_options = ['--find-copies-harder', '-l100000',
- '-C%s' % similarity]
+ similarity_options = ['-l100000', '-C%s' % similarity]
else:
similarity_options = ['-M%s' % similarity]
« no previous file with comments | « no previous file | tests/git_cl_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698