CardiacPhase/Git/mingw64/libexec/git-core/mergetools/opendiff

15 lines
267 B
Plaintext
Raw Normal View History

2019-05-06 16:34:28 +02:00
diff_cmd () {
"$merge_tool_path" "$LOCAL" "$REMOTE" | cat
}
merge_cmd () {
if $base_present
then
"$merge_tool_path" "$LOCAL" "$REMOTE" \
-ancestor "$BASE" -merge "$MERGED" | cat
else
"$merge_tool_path" "$LOCAL" "$REMOTE" \
-merge "$MERGED" | cat
fi
}