Chromium Code Reviews| Index: git_cl.py |
| diff --git a/git_cl.py b/git_cl.py |
| index 194a817846dec236ed72f843b0361ec47bc03261..bda6c38bfb448fd5a309bd79c6e798b71c0d2d53 100755 |
| --- a/git_cl.py |
| +++ b/git_cl.py |
| @@ -1128,7 +1128,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) |
|
cmp
2012/06/12 17:51:45
I assumed you wanted to keep using -C -C here. LM
M-A Ruel
2012/06/12 18:07:02
You can use --find-copies-harder. :)
|
| if settings.GetIsGerrit(): |
| return GerritUpload(options, args, cl) |