vote up 9 vote down star
2

I have a folder c:\websites\test and it contains folders and files that were checked out from a repository that no longer exists.

How do I get subversion to stop tracking that folder and any of the subfolders and files? I know I could simply delete the .svn folder but there are a lot of sub-folders in many layers.

flag

76% accept rate

8 Answers

vote up 8 vote down check

Also, if you are using TortoiseSVN, just export to the current working copy location and it will remove the .svn folders and files.

http://tortoisesvn.net/node/343

link|flag
thanks! that was exactly what I wanted to do. – Brian Boatright Sep 30 '08 at 20:36
Perfect! A simple solution to a common problem I have... – Mark Struzinski Jan 29 at 16:06
vote up 7 vote down

Try svn export.

You should be able to do something like this:

svn export /path/to/old/working/copy /path/to/plain/code

And then just delete the old working copy.

TortoiseSVN also has an export feature, which behaves the same way.

link|flag
1  
Thanks for providing an answer that works with the command line. :) Great for those of us using terminals. – epochwolf Aug 10 at 0:01
vote up 2 vote down

You can use "svn export" for creating a copy of that folder without svn data, or you can add that folder to ignore list

link|flag
vote up 2 vote down

use the svn export command:

cd c:\websites\test
svn export c:\websites\test_copy

all files under version control will be exported, double check to make sure you haven't missed anything.

link|flag
vote up 2 vote down

If you are running Windows then you can do a search on that folder for .svn and that will list them all. Pressing ctrl+a will select all of them and pressing delete will remove all the 'pesky' subversion stuff.

link|flag
pesky indeed ;-) I just need to clean it up and I'll put it back to a new repository. – Brian Boatright Sep 30 '08 at 20:26
1  
that's also a GREAT way to delete the even most pesky frontpage extension folders! – Brian Boatright Sep 30 '08 at 20:27
vote up 1 vote down

On Linux, this will work:

  find . -iname ".svn" -print0 | xargs -0 rm -r
link|flag
vote up 1 vote down

This did the trick for me:

http://weblogs.asp.net/jgalloway/archive/2007/02/24/shell-command-remove-svn-folders.aspx

It lets you add a context menu action that will delete the .svn folder.

Funny - cause I just found it this morning...

link|flag
vote up 1 vote down

This question is the same as: http://stackoverflow.com/questions/160497/removing-svn-folders-from-project-for-deployment

link|flag
Not exactly the same, same answer, different question. – Dre Oct 2 '08 at 2:45
maybe but I asked the question first. – Brian Boatright Feb 20 at 23:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.