Using TortoiseMerge for command line Subversion merging
Create a batch file called
svn_tortoisemerge.batwith the following content."c:\Program Files\TortoiseSVN\bin\TortoiseMerge.exe" /base:"%1" /theirs:"%2" /mine:"%3" /merged:"%4"Set the
SVN_MERGEenvironment variable to point to the file.set SVN_MERGE=c:\...\svn_tortoisemerge.batWhen merging conflicts use
lto launch the editor andrto mark a conflict as resolved.Conflict discovered in 'C:/.../somefile'. Select: (p) postpone, (df) diff-full, (e) edit, (mc) mine-conflict, (tc) theirs-conflict, (s) show all options:
Via Stack Overflow.