Pages

Monday, August 08, 2011

.hgignore

Using Mercurial with .Net projects, there is a need to constantly create .hgignore file to disregard changes to files that should not go into the source control. The contents of this file are mostly the same for all projects. My list goes something like this:

syntax: glob
*/bin/*
*/obj/*
*.suo
*/Bin/*
*/ClientBin/*
*.user
pull.ps1
push.ps1

Not sure if the ones below should be ignored. Leaving them in for now.

*.vspscc
*.vssscc

No comments: