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
2010-02-07 19:03:42
can you do this through tortoisesvn windows explorer integration or must be done through command line ?
ooo
2010-02-07 19:13:58
@oo, yes it can be done with TortoiseSVN: http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-ignore.html
CMS
2010-02-07 19:15:51