I'm using svn command line version on the Mac. I figured out how to get 'svn diff' to use DiffMerge properly: I basically make my own shell script and set the diff-cmd to that. I'll share it here in case anyone else finds it useful:
Code: Select all
#!/bin/sh
diffmerge -u -t1="$3" -t2="$5" $6 $7
But I for the life of me can't figure out how to integrate DiffMerge with svn when there's a merge conflict. I do an svn merge and get this message:
Code: Select all
Conflict discovered in 'Admin/SA_prod_edit.asp'.
Select: (p) postpone, (df) diff-full, (e) edit,
(mc) mine-conflict, (tc) theirs-conflict,
(s) show all options:
Someone PLEASE tell me how to set this up so when this happens, DiffMerge comes up and I can resolve the conflict there. Thanks!