Reputation: 64737
How to ignore white-spaces in subversive? is it only supported by that another svn plugin?
Upvotes: 3
Views: 1141
Reputation: 1499
Don't know whether you mean ignore white-spaces in subversive when "svn diff" or on every commit.
For svn diff, this command can solve your problem:
svn diff -x --ignore-eol-style
For every commit, you can refer this subversive FAQ
Upvotes: 0
Reputation: 59203
According to this page, Subversion doesn't have a built-in option for this. You can, however, use an external diff program that does by doing something like this (depending on your OS and what diff software you have installed):
svn diff --diff-cmd diff -x -uw /path/to/file
Hope that helps!
Upvotes: 2