Remove SVN Info from a Folder
Tagged with: delete, find, remove, subversion, svn
This command removes the SVN data from a folder.
find -name .svn -exec rm -rf {} \;
This command removes the SVN data from a folder.
find -name .svn -exec rm -rf {} \;
July 9th, 2008 22:29
[...] I get the page about removing SVN data from a folder. Nifty, [...]
January 9th, 2009 04:39
Thanks! This was really useful.