首页 > Git 想要忽略文件夹,但不忽略某个文件,设置规则无效,请问怎么回事

Git 想要忽略文件夹,但不忽略某个文件,设置规则无效,请问怎么回事

想要达到 upload 文件夹下忽略所有文件跟踪,但不忽略 index.html ,单规则

在.gitignore 文件里设置如下

uploads/*

uploads/!index.html

但不起作用, index.html 也被忽略了,不跟踪了。 请问是这个语法有问题吗?

Git 版本 2.6.3


upload
!upload/index.html

2楼是正确的, 你要是不想在upload文件夹下新增.gitignore, 你可以把你的代码

uploads/*

uploads/!index.html

交换下位置, 因为你的这个规则为

忽滤upload文件夹下的所有文件, 然后你再不让其忽滤index.html, 所有文件都被忽滤了,当然index.html就不存在了


在upload文件夹下新建.gitignore,内容如下:

*
!.gitignore
!index.html
【热门文章】
【热门文章】