Reputation: 90465
I noticed that TortoiseHg doesn't commit empty folders. How to fix that?
Upvotes: 17
Views: 5655
Reputation: 905
If you have a project with a build process it should create needed folders automatically when needed.
Upvotes: 0
Reputation: 26743
This is usually done by adding a hidden file in the folder (starting with a dot, like .hidden
).
Upvotes: 18
Reputation: 13984
Mercurial doesn't track empty folders.
If you really want an 'empty' folder in the repo, I'd suggest checking in a readme file in that folder explaining why it's empty/necessary to be in the repo, that way you can have a psuedo empty folder and have documentation for why at the same time.
Alternatively look at why you need this folder. Is it for you build process? Then maybe creating it should be part of the build process not version control.
Upvotes: 23