忽略任何目录中的文件

要忽略任何目录中的文件 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/