Staging
v0.8.1
https://github.com/git/git
Raw File
Tip revision: b066807397fd55553f4910ede74839e319b661fd authored by Junio C Hamano on 22 July 2020, 16:30:01 UTC
Git 2.28-rc2
Tip revision: b066807
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