In order to stop writing my .hgignore for every new repository; I decided to create a separate repository for my hgignores which currently looks like:
hgignores
├── cpp
├── eclipse
├── intellij
├── java
├── latex
├── linux
├── netbeans
├── osx
├── python
└── textmate
Now for each repository, I am pasting the relevant ignores.
For example:
$ cat hgignores/latex hgignores/osx hgignores/textmate >> [repo]/.hgignore
This makes me wonder, if in the future I happen to have forgotten a flag for an ignore file for cpp (for example), I will have to edit hgignores/cpp and eventually make changes in every cpp repository I have AGAIN!
I think I am moving to a right direction by creating a unified repo for ignores, but I maybe missing few tips here and there.
Would love to hear some suggestions; or insights into how you get this done?