/usr/lib/git-core/mergetools
NameSizeModeActions
araxis3580644editdlrm
bc4230644editdlrm
codecompare3530644editdlrm
deltawalker6630644editdlrm
diffmerge3090644editdlrm
diffuse2480644editdlrm
ecmerge3060644editdlrm
emerge4380644editdlrm
examdiff3360644editdlrm
guiffy2630644editdlrm
gvimdiff290644editdlrm
kdiff36730644editdlrm
kompare1170644editdlrm
meld19860644editdlrm
nvimdiff290644editdlrm
opendiff2670644editdlrm
p4merge6170644editdlrm
smerge2640644editdlrm
tkdiff2580644editdlrm
tortoisemerge6020644editdlrm
vimdiff12200644editdlrm
winmerge3610644editdlrm
xxdiff7680644editdlrm
Edit: /usr/lib/git-core/mergetools/p4merge (617B)
diff_cmd () { empty_file= # p4merge does not like /dev/null if test "/dev/null" = "$LOCAL" then LOCAL="$(create_empty_file)" fi if test "/dev/null" = "$REMOTE" then REMOTE="$(create_empty_file)" fi "$merge_tool_path" "$LOCAL" "$REMOTE" if test -n "$empty_file" then rm -f "$empty_file" fi } merge_cmd () { if ! $base_present then cp -- "$LOCAL" "$BASE" create_virtual_base "$BASE" "$REMOTE" fi "$merge_tool_path" "$BASE" "$REMOTE" "$LOCAL" "$MERGED" } create_empty_file () { empty_file="${TMPDIR:-/tmp}/git-difftool-p4merge-empty-file.$$" >"$empty_file" printf "%s" "$empty_file" }