I have some temp folders in my source tree. I am ignoring them all in .hgignore like below
temp/
It is ignoring all the temp folders e.g.
a/temp
b/temp
a/c/temp
b/d/temp
But I want a specific temp folder for example "a/c/temp" to include in the repository. So I excluded it in .hgignore like below.
!a/c/temp
/temp
But it is not working. "a/c/temp" folder is still being ignored. Any idea?