tags:

views:

32

answers:

1

i just moved a bunch of code into a svn repo and it checked in all of the resharper files and other items that dont need to be in source control. whats is the easiest way to tell svn to ignore certain directories?

+3  A: 

You can set the svn:ignore property, I use the following in most of my projects root directory:

[Bb]in
obj
*.suo
_ReSharper.*
*.user

That will ignore generated files (bin, and obj directories), user preferences (.suo and the ReSharper's .user file) and the ReSharper directory.

CMS
can you do this through tortoisesvn windows explorer integration or must be done through command line ?
ooo
@oo, yes it can be done with TortoiseSVN: http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-ignore.html
CMS