Reputation: 26732
At the root of my d: drive, TortoiseSVN is showing the question mark decorators on all the folders. The d: drive is not a SVN working copy. How do I remove the decorators?
Upvotes: 7
Views: 17750
Reputation: 1445
To remove the svn sync we have to 'un-version' the folder/drive, the proper way to do it is as follows
Click on the folder/drive --> selectTortoiseSVN --> Export --> choose the same location as the folder currently is in, export the folder to itself
Upvotes: 0
Reputation: 69
The question mark decorators can be deactivated as shown here.
Go to Tortoise SVN >> Settings >> Icon Overlays
In the Drive Types section
Un-check
And check
Upvotes: 4
Reputation: 71
There are two things you should check.
Remove any .svn folders from the root level of your drive.
The .svn folder is hidden so you will have to make sure Windows Explorer shows hidden files and folders.
tortoiseproc /command:rebuildiconcache
Upvotes: 7
Reputation: 13357
TSVNCache, which TortoiseSVN uses to keep those icons uptodate, doesn't always make the correct choices about which directories need decoration. You can limit which directories it will consider by:
In the Drive Types section
I have only Fixed Drives checked.
Exclude paths:
c:\*
Include paths:
c:\cygwin\home\me\workspaces\*
c:\dev\*
d:\development\*
Upvotes: 11
Reputation: 113340
If a restart doesn't solve it (i.e. it's not a TortoiseSVN bug), the root folder is probably a working copy created by mistake.
Upvotes: 0