https://github.com/git/git
Raw File
Tip revision: 4384e3cde2ce8ecd194202e171ae16333d241326 authored by Junio C Hamano on 04 August 2017, 16:31:12 UTC
Git 2.14
Tip revision: 4384e3c
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