Is there any way to make svn diff command ignore some specific lines in a source code file, so consider this as not a changes?
1 Answer
You can only ignore white spaces. Read the svn manual for more information: http://svnbook.red-bean.com/en/1.7/svn.ref.svn.html
--diff-cmdto specify the command used to do the diffing, so you could always write your own diff command.svn diff | grep -v foo).