忽略任何目錄中的檔案
要忽略任何目錄中的檔案 foo.txt
,你應該只寫它的名字:
foo.txt # matches all files 'foo.txt' in any directory
如果要僅在樹的一部分中忽略該檔案,可以使用**
模式指定特定目錄的子目錄:
bar/**/foo.txt # matches all files 'foo.txt' in 'bar' and all subdirectories
或者你可以在 bar/
目錄中建立 .gitignore
檔案。相當於前面的例子,將使用以下內容建立檔案 bar/.gitignore
:
foo.txt # matches all files 'foo.txt' in any directory under bar/