I have the following on .hgignore:
syntax: glob
*
and the following on myfiles.txt:
.zshrc
.zprofile
glob:.less*
glob:.emacs*/**
glob:src*/**
glob:.bash*
.inputrc
.ssh
If I try adding the files in myfiles.txt to the Mercurial repository using File Name patterns:
hg add listfile:myfiles.txt
or File Sets:
hg add "set: 'listfile:myfiles.txt' "
it doesn't work; Mercurial prints nothing and it doesn't add any files.
However, the two statements above work as soon as I remove * from .hgignore, which is odd, since I thought an explicit hg add should override anything on .hgignore.
Goal:
Aside from whether or not the above is expected Mercurial behavior, my goal is to have Mercurial ignore all files except those that I add explicitly from a control file such as myfiles.txt where I can use glob patterns. Is there a way to do this in Mercurial?
Update:
I'm not sure why some of the file patterns work for @smooth reggae. As @Martin said below, he was able to reproduce the behavior above, where file patterns seem to "clash" .hgignore, as they do for me (i.e. Mercurial respects .hgignore regardless of the explit hg add command).
To clarify, I am running Mercurial version 2.0.1 on Linux, and I have tried this on Red Hat and Ubuntu.