| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git.py
|
| index c2bf421fd02364c2910bd46334ba6fd0f181ed85..f97f98f134a5964d7a29ea0de874eb77824fcd29 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/git.py
|
| @@ -232,7 +232,8 @@ class Git(SCM):
|
| order = "-O%s" % order_file
|
|
|
| command = [self.executable_name, 'diff', '--binary', '--no-color', "--no-ext-diff",
|
| - "--full-index", "--no-renames", order, self._merge_base(git_commit), "--"]
|
| + "--full-index", "--no-renames", "--src-prefix=a/", "--dst-prefix=b/",
|
| + order, self._merge_base(git_commit), "--"]
|
| if changed_files:
|
| command += changed_files
|
| return self._run(command, decode_output=False, cwd=self.checkout_root)
|
|
|