想要達到 upload 資料夾下忽略所有檔案跟踪,但不忽略 index.html ,單一規則
在.gitignore 檔案裡設定如下
uploads/* uploads/!index.html
但不起作用, index.html 也被忽略了,不跟踪了。 請問是這個文法有問題嗎?
Git 版本 2.6.3
欢迎选择我的课程,让我们一起见证您的进步~~
雷雷
在upload資料夾下新建.gitignore,內容如下:
* !.gitignore !index.html
upload
.gitignore
交換下位置, 因為你的這個規則是
忽濾upload文件夹下的所有文件, 然后你再不让其忽滤index.html, 所有文件都被忽濾了,當然index.html就不存在了
index.html
親測這麼寫uploads/* uploads/!index.html不行,後來我研究了一下,可以這麼寫,看我的博文吧http://blog.csdn.net/CalShell...
雷雷
在upload資料夾下新建.gitignore,內容如下:
2樓是對的, 你要是不想在
upload
文件夹下新增.gitignore
, 你可以把你的代碼交換下位置, 因為你的這個規則是
親測這麼寫
uploads/* uploads/!index.html
不行,後來我研究了一下,可以這麼寫,看我的博文吧http://blog.csdn.net/CalShell...