stash: don't delete untracked files that match pathspec
[git.git] / mergetools / diffuse
blob5a3ae8b5695d3141ff0310a706495ea52037b464
1 diff_cmd () {
2         "$merge_tool_path" "$LOCAL" "$REMOTE" | cat
5 merge_cmd () {
6         if $base_present
7         then
8                 "$merge_tool_path" \
9                         "$LOCAL" "$MERGED" "$REMOTE" \
10                         "$BASE" | cat
11         else
12                 "$merge_tool_path" \
13                         "$LOCAL" "$MERGED" "$REMOTE" | cat
14         fi