8

I'm trying to figure out how to unversion the bin and obj files in my porject and I'm struggling.

I've found various instructions telling me to export the files onto themselves but that just ends up with the folders being "obstructed" in TSVN's 'view mods' screen, and it locks up the whole check out - I get errors saying that ..../bin is not a working copy.

I also at one point just deleted the folders from the repos but the when they get re-created in the next build they show up as the ? symbol which is kinda annoying.

Help?

1
  • Yes, deleting them from the repo is how you unversion them. The annoying ? files can easily be hidden. See the answers below.
    – bobbogo
    Commented Mar 11, 2011 at 19:25

3 Answers 3

5

In the latest SVN (1.7.10), if you have TortoiseSVN Installed (1.7.13), there is an option in the right click menu, "Unversion and Add to ignore list".

enter image description here

This really ads the files/folders to ignore list. The hidden .svn folder still exists in the folder. Note that you have to execute commit after this action, which asks to delete these files but they are only unversioned.

1

Add them to the svn ignore list. Instructions can be found here

And perhaps just read this question solution

1
  • 1
    Ahh, you need to delete them AND set them to ignore in the same action. If you delete them first then try to ignore them later, it has a hissy fit about them not have working copy areas (.svn files)
    – Brondahl
    Commented Mar 11, 2011 at 22:00
1

Go to TortoiseSVN Settings / General and add bin obj to 'Global ignore pattern' - it will exclude all your bin and obj folders. You can add certain file extensions, ie. *.suo

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