想要達到 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...