Initial class construction
This commit is contained in:
16
Git/mingw64/libexec/git-core/mergetools/tkdiff
Normal file
16
Git/mingw64/libexec/git-core/mergetools/tkdiff
Normal file
@ -0,0 +1,16 @@
|
||||
diff_cmd () {
|
||||
"$merge_tool_path" "$LOCAL" "$REMOTE"
|
||||
}
|
||||
|
||||
merge_cmd () {
|
||||
if $base_present
|
||||
then
|
||||
"$merge_tool_path" -a "$BASE" -o "$MERGED" "$LOCAL" "$REMOTE"
|
||||
else
|
||||
"$merge_tool_path" -o "$MERGED" "$LOCAL" "$REMOTE"
|
||||
fi
|
||||
}
|
||||
|
||||
exit_code_trustable () {
|
||||
true
|
||||
}
|
Reference in New Issue
Block a user