I am using "svn diff" command to get changes at directory level but this diff include all the comment line changes and blank line changes. How can I ignore these values?
ex:
diff file:
+ import......
+ some code
+ #comment
+ blank line
+ some code
this should be as below:(comments and blank lines should be ommitted)
+ import......
+ some code
+ some code
It would be good also if i can process the first file using Java or unix and delete these blank and comment lines?