Initial class construction
This commit is contained in:
15
Git/mingw64/libexec/git-core/mergetools/diffuse
Normal file
15
Git/mingw64/libexec/git-core/mergetools/diffuse
Normal file
@ -0,0 +1,15 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user