How to write .gitignore, so that a directory is put in git, but not its contents
假设我有一个目录…
我希望忽略…
为了实现这一目标,我必须把什么放到
我认为您可以通过在../parent/slave目录中添加一个.gitignore来满足您的需求,其内容如下:
1 2 3 4 | # Ignore everything in this directory * # Except this file !.gitignore |
如果这不符合你的要求,这里的其他答案可能会有所帮助:
如何将空目录添加到Git存储库?