October 9, 2009
I don’t know how it happened, but my local working copy got locked. This meant that every time I tried to commit, I got a ‘working copy is locked’ error.
The solution was easy, after I found a reference in the FAQ:
svn cleanup <directory>
Read the full article →
March 15, 2009
I recently needed to clean up and remove all of the svn files in a directory structure. I found the answer here, a simple linux command line to recursively delete .svn folders:
find . -name “.svn” -print0 | xargs -0 rm -Rf
Read the full article →