how to make svn diff show only non-whitespace line changes between two revisions January 16, 2023 by Tarik You can use svn diff -r 100:200 -x -b > file.diff If you want to ignore all whitespaces: svn diff -x -w | less Source