| Index: git_cl.py
|
| diff --git a/git_cl.py b/git_cl.py
|
| index 194a817846dec236ed72f843b0361ec47bc03261..114ab1a8113bf2f10ac54876fa5ccbecafd4a93d 100755
|
| --- a/git_cl.py
|
| +++ b/git_cl.py
|
| @@ -1128,7 +1128,8 @@ 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', '--find-copies-harder'] + args,
|
| + env=env)
|
|
|
| if settings.GetIsGerrit():
|
| return GerritUpload(options, args, cl)
|
|
|