Is it possible, while using glob syntax for an .hgignore file, to recursively ignore certain files and folders, except one?
Assuming that you have:
a/
a/b
a/c
a/d
Something like:
syntax globe:
a
^a/b
This should ideally ignore c and d and keep b.
I know this has been discussed in other SO questions, but it seems they're all using regex mode for the syntax.