gitignore不会忽略未跟踪的文件

问题描述 投票:0回答:2

需要为即将到来的项目设置gitignore,但是当前的测试表明它实际上并没有忽略未跟踪的文件。

eBGTest是我的git repo,我试图忽略的文件是eBGTest / test

eBGTest /的.gitignore

/test/
.test
test
test
test
test
/test
./test
eBGTest/test
test.test

编辑(git status输出):未跟踪的文件:(使用“git add ...”包含将要提交的内容)

    .gitignore
    test

没有更改添加到提交(使用“git add”和/或“git commit -a”)

你可以在上面看到,它没有被git跟踪

git gitignore
2个回答
1
投票

尝试添加这样的

  .test #or /test/

或者看看这个网站Github

gitignore

tutorials


-2
投票

制作git add .gitignore; git commit -m 'First commit - gitignore'

要使.gitignore忽略这些文件,您必须先提交,然后才会应用更改。

在此之后,test文件将被忽略。

© www.soinside.com 2019 - 2024. All rights reserved.