某草草2017-05-02 09:36:20
看這裡:
If the pattern ends with a slash, it is removed for the purpose of the
following description, but it would only find a match with a
In other words, foo/ will match a directory foo and paths
it, but will not match a regular file or a symbolic link
foo (this is consistent with the way how pathspec works in general in
Git)
在我看來,這兩個命令沒區別。都是過濾/data/cache/
目錄下的所有內容
PHP中文网2017-05-02 09:36:20
.gitignore
設定檔用於配置不需要加入版本管理的文件,配置該文件可以為我們的版本管理帶來很大的便利。
以斜槓「/」開頭表示目錄;
以星號「*」通配多個字元;
以問號「?」通配單一字元;
以方括號「[]」包含單一字元的符合清單;
以嘆號「!」表示不忽略(追蹤)符合的檔案或目錄;
希望對你有幫助