Category Archives: subversion

Ignore whitespace in a Subversion diff

$ svn diff –diff-cmd diff -x -uw /path/to/file Solution copied from Ignore whitespace in a Subversion diff

Posted in subversion | Tagged , , | Leave a comment

Find a string in files under Subversion

As a programmer, I’ve been using find to locate string in my source code.  Issuing a find would include svn files too which is not my intension.  Here’s the command: $ find . -not -regex ‘.*svn.*’ -exec grep “$1″ ‘{}’ … Continue reading

Posted in subversion | Tagged , , | Leave a comment

Tired of entering you svn password everytime?

I have set up svn repositories on dedicated Linux server of my clients but the constant typing of svn password everytime I access the repository makes life for a developer less livable. Until I found the solution… So here it … Continue reading

Posted in Freelancing, Programming, subversion | Tagged , , , | 7 Comments