Possible Duplicate:
How do you remove Subversion control for a folder?
If I want to take a folder that was under Subversion and remove all links to Subversion, do I just delete the .svn folders and that's it? What else do I have to consider?
If I want to take a folder that was under Subversion and remove all links to Subversion, do I just delete the |
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
No, you just have to search for all .svn folders and delete them. Alternatively, doing a |
|||||||||||||||
|
|
Found the following windows command-line here:
It works for me. (If you want to use this in a batch file, put "%%G" instead of "%G") |
||||
|
|
|
On unix systems over the shell:
On Windows:
|
|||
|
When using TortoiseSVN, right-mouse drag a folder that is under version control to a destination, and select "SVN Export all items here" from the context menu. This will create a folder with your working folder, without the .svn files. |
|||
|
|
|
Normally yes, removing .svn folders is enough, but define "remove any link to subversion at all". Because there are such features as keyword substitution inside the versioned files. |
|||||||||||
|
|
Yes. Just delete .svn folder and your folder will no longer be under the control of subversion. The .svn folder is the pristine copy of your repository when you did the checkout. So, it acts as the link between your server and your working copy. Once you delete it, you lose this "link". Edit: If you have any subfolder in your project, you will have a .svn folder in each of them. So, if you want to remove the link to subversion, you need to delete these .svn subfolders. |
|||||||||
|
|
Nope, deleting the |
|||||
|
|
You can manually delete all .svn folders. Alternatively, you can use The advantage of using |
|||
|
|
|
I like to use deletesvn.reg. It adds a "Delete SVN Folders" to your context-menu in Explorer. Selecting it recursively deletes .svn folders, thus disconnecting your folders from SVN. The problem I've had with SVN Export, as others mentioned, is that it only exports files that are in the repo, ignoring all those hidden files you might need. |
|||
|
|
.svnfolders will remove references directly on the SVN working copy. – awe Oct 14 '09 at 11:37