Jul 17
It seems like I’m always reinstalling and forgetting which files should and shouldn’t be checked in. Here is a good pattern to get started with:
*.suo *.user obj Debug *.pdb *.application *.Cache *.scc Thumbs.db RECYCLER
Some people believe nothing in bin/ should be checked in, however, I use my repository as a software distribution site as well, so I allow bin/Release to be versioned. This pattern should work for most of .NET but I haven’t fully tested it, I only use C#.

