blob: 66906a720d6079acce918b97083c0f64b95049b6 [file] [log] [blame]
David Aguilarbc7a96a2011-08-18 00:23:46 -07001diff_cmd () {
2 "$merge_tool_path" "$LOCAL" "$REMOTE"
3}
4
Fernando Ramos980145f2022-03-30 21:19:09 +02005diff_cmd_help () {
6 echo "Use TkDiff (requires a graphical session)"
7}
8
David Aguilarbc7a96a2011-08-18 00:23:46 -07009merge_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}
David Aguilar7c106052016-11-29 01:38:07 -080017
18exit_code_trustable () {
19 true
20}
Fernando Ramos980145f2022-03-30 21:19:09 +020021
22merge_cmd_help () {
23 echo "Use TkDiff (requires a graphical session)"
24}