I posted a terminal command about 7 months ago about cleaning up SVN working directories. Unbeknownst to me, wordpress chewed up the code and spit out a useless shell of the command’s former self.
Here it is again, in all its glory:
find -d "your/working/directory" -name ".svn" -exec rm -r '{}' ; -print
I needed it this time, because the working directory of a current top secret web project suddenly became orphaned, its repository suddenly inaccessible.
In any case, if you want more explanation on how this command works, see the original post (now edited).