May18

Written by:David Aldridge
5/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.
 

Tags:

Your name:
Your email:
(Optional) Email used only to show Gravatar.
Your website:
Title:
Comment:
Security Code
Enter the code shown above in the box below
Add Comment  Cancel 
You must be logged in and have permission to create or edit a blog.