]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - mergetools/winmerge
Merge branch 'nb/branch-show-other-worktrees-head'
[thirdparty/git.git] / mergetools / winmerge
... / ...
CommitLineData
1diff_cmd () {
2 "$merge_tool_path" -u -e "$LOCAL" "$REMOTE"
3 return 0
4}
5
6merge_cmd () {
7 # mergetool.winmerge.trustExitCode is implicitly false.
8 # touch $BACKUP so that we can check_unchanged.
9 "$merge_tool_path" -u -e -dl Local -dr Remote \
10 "$LOCAL" "$REMOTE" "$MERGED"
11}
12
13translate_merge_tool_path() {
14 mergetool_find_win32_cmd "WinMergeU.exe" "WinMerge"
15}