There is another question: how to make diff look like svn diff? but I want the exact opposite. I am 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 this i get
/usr/bin/diff: illegal option -- L
So i do it
svn diff --diff-cmd /usr/bin/echo file
to find out what is going on. and he spits it all out, that I see why diff is not like ...
-u -L file (revision 11371) -L file (working copy) .svn/text-base/file.svn-base file
So ... how do I get svn to actually use another program to distinguish between?
source
share