I have a long standing problem: at work we're using mercurial as a DSCM, but we can't figure out how to keep our config files in sync.
The problem is that we want to keep track of config files and want to be able to exchange the config file contents among developers, but every developer wants to have his connectionStrings section independent of others'.
Is it possible to somehow keep config files tracked but to omit the connection strings section when pulling and pushing?
We tried adding config files to .hgignore but when someone adds something important to config file we have to share it by email.
Thank you.