]> git.ipfire.org Git - thirdparty/git.git/blame - mergetools/emerge
Merge branch 'lt/diff-stat-show-0-lines' into maint
[thirdparty/git.git] / mergetools / emerge
CommitLineData
bc7a96a8
DA
1diff_cmd () {
2 "$merge_tool_path" -f emerge-files-command "$LOCAL" "$REMOTE"
3}
4
5merge_cmd () {
6 if $base_present
7 then
8 "$merge_tool_path" \
9 -f emerge-files-with-ancestor-command \
10 "$LOCAL" "$REMOTE" "$BASE" \
11 "$(basename "$MERGED")"
12 else
13 "$merge_tool_path" \
14 -f emerge-files-command \
15 "$LOCAL" "$REMOTE" \
16 "$(basename "$MERGED")"
17 fi
18 status=$?
19}
20
21translate_merge_tool_path() {
22 echo emacs
23}