Mercurial: how to apply the hg forget command to an entire directory
- by SaM
My directory structure is as follows
Project
-- .hg
-- src
-- tests
When I ran hg init on the Project path, everything got added into the repo. However, inside src, there are directories like bin and obj which I'd not like to track. How do I exclude them now? I've tried hg forget src\bin - it says path not found.
Please guide.