Written by:David Aldridge5/18/2011 2:28 PM
If you have some files on a local machine that were once versioned using SVN, but you no longer want them to be versioned then you have two options to remove versioning:svn export --force . This will unversion the files in situ. However if it runs into an error you may be forced to use the somewhat more raw:find . -iname ".svn" -type d -exec rm -r {} \; This will forcefully remove versioning from the files.
svn export --force .
find . -iname ".svn" -type d -exec rm -r {} \;
0 comment(s) so far...