Caveat:
I try all the posibilities listed here: How can I ignore everything under a folder in Mercurial.
None works as I hope.
I want to ignore every thing under the folder test
. But not ignore srcProject\test\TestManager
I try
syntax: glob
test/**
And it ignores test
and srcProject\test\TestManager
With:
syntax: regexp
^/test/
It's the same thing.
Also with:
syntax: regexp
test\\*
I have install TortoiseHG 0.4rc2 with Mercurial-626cb86a6523+tortoisehg, Python-2.5.1, PyGTK-2.10.6, GTK-2.10.11 in Windows
.hgignore
didn't come through. Make sure your ignore file is being interpreted as a regex instead of a glob, and don't count on ignore to ignore files you've alreadyhg add
ed. Ignoring only affects how unadded files are listed/treated. – Haleyhalf