Initial class construction
This commit is contained in:
14
Git/mingw64/libexec/git-core/mergetools/ecmerge
Normal file
14
Git/mingw64/libexec/git-core/mergetools/ecmerge
Normal file
@ -0,0 +1,14 @@
|
||||
diff_cmd () {
|
||||
"$merge_tool_path" --default --mode=diff2 "$LOCAL" "$REMOTE"
|
||||
}
|
||||
|
||||
merge_cmd () {
|
||||
if $base_present
|
||||
then
|
||||
"$merge_tool_path" "$BASE" "$LOCAL" "$REMOTE" \
|
||||
--default --mode=merge3 --to="$MERGED"
|
||||
else
|
||||
"$merge_tool_path" "$LOCAL" "$REMOTE" \
|
||||
--default --mode=merge2 --to="$MERGED"
|
||||
fi
|
||||
}
|
Reference in New Issue
Block a user