Combining svn diff --ignore-eol-style and --ignore-all-space is not working:
$ svn diff -x -w --ignore-eol-style -r 1143:1177 somefile
svn: invalid option: --ignore-eol-style
And,
$ svn diff -x --ignore-eol-style -x --ignore-all-space -r 1143:1177 somefile
Only executes the last option: ignore-all-space
Anybody dealt with this before?
diff: unrecognized option '--ignore-eol-style'
use the short form instead:svn diff -x -w
– Predecease