/ Published in: Bash
URL: http://stackoverflow.com/questions/160497/removing-svn-folders-from-project-for-deployment
Expand |
Embed | Plain Text
find /path/to/project/root -name '.svn' -type d -exec rm -rf '{}' \;
You need to login to post a comment.
