Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图只忽略存储库根目录中的所有.log文件类型(即foo.log)。
.log
foo.log
两者都*.log匹配/*.log根目录中该类型的所有文件,但它们也递归匹配(即/foo/bar/baz.log)
*.log
/*.log
/foo/bar/baz.log
注意:我在 windows 上使用 git(git 扩展)
如何仅将存储库根目录中的所有文件与特定文件类型匹配?
这是 git 扩展的一个错误:
https://github.com/gitextensions/gitextensions/issues/1040