https://github.com/git/git
Raw File
Tip revision: 3a19048ce498d519bd564c9fd222161dca789321 authored by Johannes Schindelin on 11 March 2023, 19:29:33 UTC
Git 2.33.8
Tip revision: 3a19048
winmerge
diff_cmd () {
	"$merge_tool_path" -u -e "$LOCAL" "$REMOTE"
	return 0
}

merge_cmd () {
	# mergetool.winmerge.trustExitCode is implicitly false.
	# touch $BACKUP so that we can check_unchanged.
	"$merge_tool_path" -u -e -dl Local -dr Remote \
		"$LOCAL" "$REMOTE" "$MERGED"
}

translate_merge_tool_path() {
	mergetool_find_win32_cmd "WinMergeU.exe" "WinMerge"
}
back to top