Reputation: 4569
Does a standard or normal diff format exist in SVN or only the unified format?
Upvotes: 3
Views: 4184
Reputation: 81
svn diff --diff-cmd diff -x --normal
This has no side effects, unlike -b which causes changes in whitespace to be ignored.
Upvotes: 8
Reputation: 126095
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
.
Upvotes: 4