Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to exclude folders in Tortoise Check-ins

Tags:

tortoisesvn

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?

like image 813
PositiveGuy Avatar asked Apr 22 '09 19:04

PositiveGuy


People also ask

How to ignore folder in Tortoise SVN?

If you right click on a single unversioned file, and select the command TortoiseSVN → Add to Ignore List from the context menu, a submenu appears allowing you to select just that file, or all files with the same extension. Both submenus also have a (recursively) equivalent.

How do I ignore bin and obj folder in SVN?

To set your global ignore pattern (with TortoiseSVN) right click Windows Explorer –> TortoiseSVN –> Settings. Once you click on settings enter your global ignore pattern. I'm blocking everything in my bin folder, obj folder, anything that may have been named *.


2 Answers

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 
like image 176
julio.g Avatar answered Sep 19 '22 20:09

julio.g


Add this in the same place you exclude the files:

*/bin */obj

like image 35
Brandon Avatar answered Sep 21 '22 20:09

Brandon