mirror of
https://github.com/git/git.git
synced 2024-11-05 16:52:59 +01:00
16 lines
248 B
Text
16 lines
248 B
Text
|
diff_cmd () {
|
||
|
"$merge_tool_path" "$LOCAL" "$REMOTE" | cat
|
||
|
}
|
||
|
|
||
|
merge_cmd () {
|
||
|
if $base_present
|
||
|
then
|
||
|
"$merge_tool_path" \
|
||
|
"$LOCAL" "$MERGED" "$REMOTE" \
|
||
|
"$BASE" | cat
|
||
|
else
|
||
|
"$merge_tool_path" \
|
||
|
"$LOCAL" "$MERGED" "$REMOTE" | cat
|
||
|
fi
|
||
|
}
|