]> git.ipfire.org Git - thirdparty/git.git/blame - mergetools/diffmerge
mergetools: add description to all diff/merge tools
[thirdparty/git.git] / mergetools / diffmerge
CommitLineData
c5f424fd
SS
1diff_cmd () {
2 "$merge_tool_path" "$LOCAL" "$REMOTE" >/dev/null 2>&1
3}
4
980145f7
FR
5diff_cmd_help () {
6 echo "Use DiffMerge (requires a graphical session)"
7}
8
c5f424fd
SS
9merge_cmd () {
10 if $base_present
11 then
12 "$merge_tool_path" --merge --result="$MERGED" \
13 "$LOCAL" "$BASE" "$REMOTE"
14 else
15 "$merge_tool_path" --merge \
16 --result="$MERGED" "$LOCAL" "$REMOTE"
17 fi
c5f424fd 18}
7c10605d 19
980145f7
FR
20merge_cmd_help () {
21 echo "Use DiffMerge (requires a graphical session)"
22}
23
7c10605d
DA
24exit_code_trustable () {
25 true
26}