gitignore not ignoring config files
我已经读过这个问题,也读过这个问题,但它们似乎不适合我。
我有一个
1 2 3 4 | myapp/ src/ .gitignore build/ |
其中
1 2 | ### gitignore ### build/ |
我现在需要添加一个顶级的
1 2 3 4 5 6 7 | myapp/ src/ .gitignore build/ config/ .gitignore test.json |
其中,
1 2 3 | ### gitignore ### build/ !config/.gitignore |
如果
1 | !.gitignore |
但是,当我进行
1 2 3 | add '.gitignore' add 'config/.gitignore' add 'config/test.json' |
…所以看起来它会尝试无论如何添加我的
1 2 | add '.gitignore' add 'config/.gitignore' |
你知道我要去哪里(为什么)吗?
1 2 | * !.gitignore |
"这是你的一切,但这
1 | !.gitignore |
只是说,"Don’t
你也不需要在根