I’m in the process of importing my stuff in to SVN. One small issue you run in to with importing Visual Studio projects is that there are things you don’t want imported in to SVN. For instance everything under bin and obj does not need to be imported. There are also some other files that you don’t want to go either.
Sense I have a fairly large library of code to import manually deleting this stuff is out of the question. As such I wrote a simple tool that will crawl the selected directory tree removing the bin and obj directories. I need to modify it so that it also kills the other files in the process (like *.suo).
I need to figure out how to tell SVN to ignore the bin and obj directories after I do a checkout, but I can save that for another day.