aboutsummaryrefslogtreecommitdiffstats
path: root/mergetools/tkdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-05-10 17:41:11 -0700
committerJunio C Hamano <gitster@pobox.com>2022-05-10 17:41:11 -0700
commit123dfdff0d6e886ce5536d39dd77dcd46db8d4c0 (patch)
treef4773e28ec45311814abcd32f94ab581a2a24895 /mergetools/tkdiff
parentMerge branch 'jh/p4-various-fixups' (diff)
parentmergetools: add description to all diff/merge tools (diff)
downloadgit-123dfdff0d6e886ce5536d39dd77dcd46db8d4c0.tar.gz
git-123dfdff0d6e886ce5536d39dd77dcd46db8d4c0.zip
Merge branch 'fr/vimdiff-layout'
Reimplement "vimdiff[123]" mergetool drivers with a more generic layout mechanism. * fr/vimdiff-layout: mergetools: add description to all diff/merge tools vimdiff: add tool documentation vimdiff: integrate layout tests in the unit tests framework ('t' folder) vimdiff: new implementation with layout support
Diffstat (limited to 'mergetools/tkdiff')
-rw-r--r--mergetools/tkdiff8
1 files changed, 8 insertions, 0 deletions
diff --git a/mergetools/tkdiff b/mergetools/tkdiff
index eee5cb57e3..66906a720d 100644
--- a/mergetools/tkdiff
+++ b/mergetools/tkdiff
@@ -2,6 +2,10 @@ diff_cmd () {
"$merge_tool_path" "$LOCAL" "$REMOTE"
}
+diff_cmd_help () {
+ echo "Use TkDiff (requires a graphical session)"
+}
+
merge_cmd () {
if $base_present
then
@@ -14,3 +18,7 @@ merge_cmd () {
exit_code_trustable () {
true
}
+
+merge_cmd_help () {
+ echo "Use TkDiff (requires a graphical session)"
+}