]> git.ipfire.org Git - thirdparty/git.git/blame - mergetools/tkdiff
cocci: apply the "pretty.h" part of "the_repository.pending"
[thirdparty/git.git] / mergetools / tkdiff
CommitLineData
bc7a96a8
DA
1diff_cmd () {
2 "$merge_tool_path" "$LOCAL" "$REMOTE"
3}
4
980145f7
FR
5diff_cmd_help () {
6 echo "Use TkDiff (requires a graphical session)"
7}
8
bc7a96a8
DA
9merge_cmd () {
10 if $base_present
11 then
12 "$merge_tool_path" -a "$BASE" -o "$MERGED" "$LOCAL" "$REMOTE"
13 else
14 "$merge_tool_path" -o "$MERGED" "$LOCAL" "$REMOTE"
15 fi
16}
7c10605d
DA
17
18exit_code_trustable () {
19 true
20}
980145f7
FR
21
22merge_cmd_help () {
23 echo "Use TkDiff (requires a graphical session)"
24}