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.
.gitignore 文件中的这两行有什么区别?
*.class .class
.gitignore能够使用 glob,因此通过插入,*.class您将忽略所有以结尾的条目,.class而在第二种情况下,您仅排除.class文件。
.gitignore
*.class
.class
有关 .gitignore 条目的更多信息可以在此文档中找到。