Captain Comic
Captain Comic

Reputation: 16216

Need to unbind local folder from SVN

I am using TortoiseSVN

I imported some file to the server. Then I deleted all imported files from server. But my folder in windows explorer is diplayed with SVN icon. How can I removed it?

enter image description here

Upvotes: 12

Views: 4846

Answers (2)

Ozair Kafray
Ozair Kafray

Reputation: 13549

The proper way is to use the svn export command.

Assuming your working directory is the root directory of your code:

svn export . ..\myexportedcode

To know more about svn export

  1. svn export (version 1.7)
  2. svn export (lastest)

OR a shortcut is:

Select the option 'Show hidden files' and delete the .svn folder in your directory.

OR

Upvotes: 3

harman_kardon
harman_kardon

Reputation: 1717

You can right click the folder -> choose TortoiseSVN -> Export and choose the same location as the folder currently is in (i.e. export the folder to itself)

This will 'un-version' the whole folder.

Upvotes: 23

Related Questions