Skip to content

Instantly share code, notes, and snippets.

@djadriano
Created February 26, 2013 20:43
Show Gist options
  • Save djadriano/5041994 to your computer and use it in GitHub Desktop.
Save djadriano/5041994 to your computer and use it in GitHub Desktop.
svn tips
// find .svn files
find . -type d -name .svn
// remove .svn files
rm -rf `find . -type d -name .svn`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment