I need to ignore the directory, but track one subfolder of this directory. The tree of my files looks like this:
root
-d1
-d2
I need to ignore the bin directory, but keep track of the bin / data directory in all the folders of my repo. Now I use:
syntax: glob
*/obj/*
*/bin/*
*.swp
but when I run the hg status, I don’t see if there is anything new in my dirs data.
Thank!
source
share