aboutsummaryrefslogtreecommitdiff
path: root/rh/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'rh/git.py')
-rw-r--r--rh/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rh/git.py b/rh/git.py
index fb3f0f4..5ce6c31 100644
--- a/rh/git.py
+++ b/rh/git.py
@@ -145,7 +145,7 @@ def raw_diff(path, target):
"""
entries = []
- cmd = ['git', 'diff', '-M', '--raw', target]
+ cmd = ['git', 'diff', '--no-ext-diff', '-M', '--raw', target]
diff = rh.utils.run_command(cmd, cwd=path, capture_output=True).output
diff_lines = diff.strip().splitlines()
for line in diff_lines: