排除一个名为components的文件夹,但不包括另一个

时间:2013-04-09 22:55:01

标签: git github

我想排除基础文件夹中的components目录,但不包括任何其他组件目录:

/components --- WANT EXCLUDED
/client/components --- WANT INCLUDED

我的.gitignore应该是什么样的

2 个答案:

答案 0 :(得分:2)

只需执行.gitignore中的/ components

答案 1 :(得分:1)

您可以通过添加!

来添加例外

因此,对于您的情况,.gitignore文件看起来像

components
!/client/components