LK.
LK.

Reputation: 4569

Standard diff format in SVN

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

Upvotes: 3

Views: 4184

Answers (2)

Nathan
Nathan

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

Georg Schölly
Georg Schölly

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

Related Questions