I want to revert a directory and all sub-directories in an SVN working copy so they match the repository but I don\'t want to touch any files i
Works on all platforms:
svn revert . --recursive
(Note that this will revert everything, not just directories.)