We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea4f93e + 99474b6 commit 3f78278Copy full SHA for 3f78278
2 files changed
git-mergetool--lib.sh
@@ -221,6 +221,7 @@ run_merge_tool () {
221
else
222
run_diff_cmd "$1"
223
fi
224
+ status=$?
225
return $status
226
}
227
t/t7800-difftool.sh
@@ -86,6 +86,11 @@ test_expect_success PERL 'difftool forwards exit code with --trust-exit-code' '
86
test_must_fail git difftool -y --trust-exit-code -t error branch
87
'
88
89
+test_expect_success PERL 'difftool forwards exit code with --trust-exit-code for built-ins' '
90
+ test_config difftool.vimdiff.path false &&
91
+ test_must_fail git difftool -y --trust-exit-code -t vimdiff branch
92
+'
93
+
94
test_expect_success PERL 'difftool honors difftool.trustExitCode = true' '
95
test_config difftool.error.cmd false &&
96
test_config difftool.trustExitCode true &&
0 commit comments