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

Unified Diff: git_cl.py

Issue 10412027: Turn on git diff copy detection for git-cl upload. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: use -C -C Created 8 years, 7 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
« 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: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index 2c63d7330cafd947151134f864714f77e8e918b6..d0f4f6e606d6647fafcfa9bd0efc67c6e3d1bd87 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -1112,7 +1112,7 @@ def CMDupload(parser, args):
if 'GIT_EXTERNAL_DIFF' in env:
del env['GIT_EXTERNAL_DIFF']
subprocess2.call(
- ['git', 'diff', '--no-ext-diff', '--stat', '-M'] + args, env=env)
+ ['git', 'diff', '--no-ext-diff', '--stat', '-C', '-C'] + args, env=env)
M-A Ruel 2012/05/22 20:48:19 Ok, so now that the intent is clear, I think that
if settings.GetIsGerrit():
return GerritUpload(options, args, cl)
« 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