Skip to content

Commit da36be5

Browse files
committed
Merge branch 'br/mergetools-guiffy'
"git mergetools" learned talking to guiffy. * br/mergetools-guiffy: mergetools: add support for guiffy
2 parents 03f78e1 + 6ceb658 commit da36be5

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

mergetools/guiffy

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
diff_cmd () {
2+
"$merge_tool_path" "$LOCAL" "$REMOTE"
3+
}
4+
5+
merge_cmd () {
6+
if $base_present
7+
then
8+
"$merge_tool_path" -s "$LOCAL" \
9+
"$REMOTE" "$BASE" "$MERGED"
10+
else
11+
"$merge_tool_path" -m "$LOCAL" \
12+
"$REMOTE" "$MERGED"
13+
fi
14+
}
15+
16+
exit_code_trustable () {
17+
true
18+
}

0 commit comments

Comments
 (0)