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

Unified Diff: third_party/upload.py

Issue 10945002: Add option to specify similarity level for git diff operations on commandline (Closed) Base URL: https://git.chromium.org/chromium/tools/depot_tools.git@master
Patch Set: Created 8 years, 3 months 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
« git_cl.py ('K') | « tests/git_cl_test.py ('k') | 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 81fbf4114354d8939595d9fb238c79e55617b9da..ad819c2ab5d811fc7213ad31b0a10728cd9e6ddc 100755
--- a/third_party/upload.py
+++ b/third_party/upload.py
@@ -586,6 +586,12 @@ group.add_option("--vcs", action="store", dest="vcs",
group.add_option("--emulate_svn_auto_props", action="store_true",
dest="emulate_svn_auto_props", default=False,
help=("Emulate Subversion's auto properties feature."))
+# Git-specific
+group = parser.add_option_group("Git-specific options")
+group.add_option("--git_similarity", action="store", dest="git_similarity",
cmp 2012/09/18 01:44:15 let's also call this --similarity
+ metavar="SIM", type="int", default=50,
+ help=("Set the minimum similarity index for detecting renames "
+ "and copies. See `git diff -C`. (default 50)."))
# Perforce-specific
group = parser.add_option_group("Perforce-specific options "
"(overrides P4 environment variables)")
@@ -1329,8 +1335,8 @@ class GitVCS(VersionControlSystem):
cmd + ["--no-renames", "--diff-filter=D"] + extra_args,
env=env, silent_ok=True)
diff += RunShell(
- cmd + ["--find-copies-harder", "-l100000", "--diff-filter=AMCRT"]
- + extra_args,
+ cmd + ["--find-copies-harder", "-l100000", "--diff-filter=AMCRT",
+ "-C%s" % self.options.git_similarity ] + extra_args,
env=env, silent_ok=True)
# The CL could be only file deletion or not. So accept silent diff for both
« git_cl.py ('K') | « tests/git_cl_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698