I'd like to make it so that every time I create a new repository, certain filters automatically get added to my .hgignore files by default.
For example, for C# projects, I would like these to be added:
glob:bin/*
glob:obj/*
Is this possible? How?
If it can't be automated, is it at least safe to copy the .hgignore file from one repository to another?