3 REM Configure your favorite diff3/merge program here.
\r
4 SET DIFF3="C:\Program Files\Funky Stuff\My Merge Tool.exe"
\r
6 REM Subversion provides the paths we need as the ninth, tenth, and eleventh
\r
7 REM parameters. But we only have access to nine parameters at a time, so we
\r
8 REM shift our nine-parameter window twice to let us get to what we need.
\r
15 REM Call the merge command (change the following line to make sense for
\r
16 REM your merge program).
\r
17 %DIFF3% --older %OLDER% --mine %MINE% --yours %YOURS%
\r
19 REM After performing the merge, this script needs to print the contents
\r
20 REM of the merged file to stdout. Do that in whatever way you see fit.
\r
21 REM Return an errorcode of 0 on successful merge, 1 if unresolved conflicts
\r
22 REM remain in the result. Any other errorcode will be treated as fatal.
\r