想要达到 upload 文件夹下忽略所有文件跟踪,但不忽略 index.html ,单规则
在.gitignore 文件里设置如下
uploads/*
uploads/!index.html
但不起作用, index.html 也被忽略了,不跟踪了。 请问是这个语法有问题吗?
Git 版本 2.6.3
漂亮男人2017-05-02 09:42:59
upload
文件夹下新增.gitignore
, 你可以把你的代码uploads/*
uploads/!index.html
交换下位置, 因为你的这个规则为
忽滤
upload
文件夹下的所有文件, 然后你再不让其忽滤index.html
, 所有文件都被忽滤了,当然index.html就不存在了
某草草2017-05-02 09:42:59
亲测这么写uploads/* uploads/!index.html
不行,后来我研究了一下,可以这么写,看我的博文吧http://blog.csdn.net/CalShell...