tags:

views:

80

answers:

2

I have the following ignore in my Tortoise settings:

*.pdb *.suo *.user *.cache */_ReSharper */bin */obj *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo *.rej *~ #*# .#* .*.swp .DS_Store

But bin and obj folders as well as reSharper still get submitted.

Second, is there a way in Windows if using Tortoise and Visual SVN Server to specify this globally on the server or something so that not every individual developer needs to manually specify these settings? I don't want to rely on our developers having to do this themselves and want to control this globally for obvious maintenance and standards reasons.

A: 

I personally prefer to set the ignores in the repository itself to avoid the problem of a developer not having their global ignore pattern set.

KeeperOfTheSoul
+1  A: 

Both the global ignore pattern and the svn:ignore property only work on unversioned files and folders. Once they're versioned, they won't be ignored anymore.

Stefan