Skip to content

Instantly share code, notes, and snippets.

@mperry
Created February 28, 2017 07:00
Show Gist options
  • Save mperry/0f87dc459208c6b21f051f7311007cfd to your computer and use it in GitHub Desktop.
Save mperry/0f87dc459208c6b21f051f7311007cfd to your computer and use it in GitHub Desktop.
WinMerge SVN diff integration batch file
@echo off
set WM="%WINMERGE_HOME%\winmergeu.exe"
rem echo parameters 0 %0 1 %1 2 %2 3 %3 4 %4 5 %5 6 %6 7 %7 8 %8 9 %9
set LEFT=%6
set RIGHT=%7
set LEFT_TITLE=%3
set RIGHT_TITLE=%5
start %WM% /B %WM% /e /s /u /dl %LEFT_TITLE% /dr %RIGHT_TITLE% %left% %right%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment