Reputation: 16216
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?
Upvotes: 12
Views: 4846
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
OR a shortcut is:
Select the option 'Show hidden files' and delete the .svn folder in your directory.
OR
Upvotes: 3
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