Git 想要忽略文件夹,但不忽略某个文件,设置规则无效,请问怎么回事
天蓬老师
天蓬老师 2017-05-02 09:40:59
0
4
580

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

在.gitignore 文件里设置如下

uploads/*

uploads/!index.html

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

Git 版本 2.6.3

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

Antworte allen(4)
Ty80
upload
!upload/index.html
伊谢尔伦

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

*
!.gitignore
!index.html
漂亮男人

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

uploads/*

uploads/!index.html

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

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

某草草

亲测这么写uploads/* uploads/!index.html不行,后来我研究了一下,可以这么写,看我的博文吧http://blog.csdn.net/CalShell...

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!