I see in the settings you can specify patterns to exclude files from check-ins. But how would you add to include folders bin and obj?
A:
The svn:ignore property will ignore matching files and folders. This is what I have to exclude bin and obj folders [Bb]in [Oo]bj Make sure to check the "Apply Property recursively"
Satish
2009-04-22 19:18:00
A:
Right-click on the bin directory and select TortoiseSVN > Add to Ignore List > FolderName. Then do the same thing for obj.
Joe White
2009-04-22 19:19:28
The downside to doing it this way is that you'll have to do it for every project you have.
Brandon
2009-04-22 19:20:32
+2
A:
I use Settings\Global Ignore Pattern. This is what I have added to the default list:
*.suo *.user bin obj Debug Release _UpgradeReport_Files *.dbmdl
julio.g
2009-06-02 01:06:17