Does a standard or normal diff format exist in SVN or only the unified format?

link|improve this question

50% accept rate
What do you call "standard diff format" ? As far as I know, there are several diff formats, (sed, unified, context) and none of them are standard. – Bluebird75 Jan 18 '09 at 9:47
feedback

2 Answers

up vote 3 down vote accepted

svn help diff reveals this:

--diff-cmd arg : use ARG as diff command

Therefore you should be able to use svn diff --diff-cmd diff to use the standard diff.

link|improve this answer
svn adds -u argument by default, (at least in version 1.5.1). So, you need to specify some diff arguments via -x to override unified format. E.g. "svn diff --diff-cmd diff -x -b" works for me – Linulin Jul 28 '09 at 13:32
feedback

svn diff --diff-cmd diff -x --normal

This has no side effects, unlike -b which causes changes in whitespace to be ignored.

link|improve this answer
Very cool. I did not know about the -x option. I've always made an external shell script with the diff command in it. Thanks! – mlathe Apr 21 '11 at 19:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.