diff --git a/git_cl.py b/git_cl.py index c558bac09b..c4789df95a 100755 --- a/git_cl.py +++ b/git_cl.py @@ -3384,8 +3384,10 @@ class Changelist(object): 'Continue with upload and override the latest changes?') return - diff = RunGitSilent( - ['diff', '%s..%s' % (last_uploaded, latest_external)]) + diff = RunGitSilent([ + 'diff', '--no-ext-diff', + '%s..%s' % (last_uploaded, latest_external) + ]) # Diff can be empty in the case of trivial rebases. if not diff: