There's another question: howto make diff look like svn diff? but I want the exact opposite. I'm trying to get svn diff to display with < and >
The obvious answer would be:
svn diff --diff-cmd /usr/bin/diff file
but when I do that I get
/usr/bin/diff: illegal option -- L
So I do this
svn diff --diff-cmd /usr/bin/echo file
to see what's going on. and it spits out all this, which I can see why diff doesn't like it....
-u -L file (revision 11371) -L file (working copy) .svn/text-base/file.svn-base file
So... how do I make svn actually use another program for diffing?