vote up 2 vote down star
2

Placing a vb.net project under git control in windows (was previously under VSS - long sad story of repository corruption, etc). How should I set up the ignore file? The exclusions I'm thinking of using are:

  • *.exe
  • *.pdb
  • *.manifest
  • *.xml
  • *.log (is git case sensitive on windows? Should I exclude *.Log as well?)
  • *.scc (I gather these were left over from VSS - maybe I should delete them?)

Is this a sensible list? Should I be excluding directories?

flag
I tried what was suggested but found that the exclude file was a bit touchy. If I edited it with notepad git failed to honour the excluded files. I used vim from git-bash and it worked OK. I also put trailing slashes on the directory exclusions. Not sure if that was necessary. – John C Feb 11 at 5:48

2 Answers

vote up 4 vote down check

Here's what I have for my C# projects:

ProjectName/bin
ProjectName/obj
*.user
*.suo
_ReSharper.*
*.sln.cache

With the bin/obj directories gone, you don't need to exclude all EXEs, XML files etc - which is handy, as it means you still get to put in the ones you want :) (You might have sample XML files etc.)

link|flag
vote up 0 vote down

Delete the existing .scc files. They're Source Safe junk.

You'll also want to exclude: .licx (license files,) .dll, .suo, .ncb, .vspcc, .vscc, and .vssscc files. The last three are generated by Visual Studio to keep track of source control bindings.

link|flag
1  
Don't exclude DLLs - you'll want to include any libraries you reference (NUnit etc). – Jon Skeet Feb 10 at 22:48
Obviously, excluding DLLs should be evaluated on a shop-by-shop basis. We exclude DLLs from our source control because all the ones in our repository are generated by the compiler. You may be able to get the same result by excluding \bin. – Jekke Feb 10 at 22:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.