I noticed that TortoiseHg doesn't commit empty folders. How to fix that?
This is usually done by adding a hidden file in the folder (starting with a dot, like .hidden
).
.keep
for such files. –
Disproportion 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.
This is usually done by adding a hidden file in the folder (starting with a dot, like .hidden
).
.keep
for such files. –
Disproportion If you have a project with a build process it should create needed folders automatically when needed.
© 2022 - 2024 — McMap. All rights reserved.