Return to Snippet

Revision: 9185
at October 24, 2008 13:37 by oddlyzen


Updated Code
find . -name .svn -print0 | xargs -0 rm -rf

Revision: 9184
at October 24, 2008 13:36 by oddlyzen


Initial Code
# to remove svn from an existing app
find . -name .svn -print0 | xargs -0 rm -rf

Initial URL


Initial Description


Initial Title
Remove a local folder from SVN version control

Initial Tags
svn

Initial Language
Bash