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 中设置一些规则,从而忽略任何名称包含“_nogit”的目录或文件。
例子:
谢谢 -
如果.gitignore文件中有一行没有斜杠,则将其git视为 shell glob 模式。因此,添加*_nogit*到您.gitignore将忽略所有这些文件。
.gitignore
git
*_nogit*
另请参见gitignore手册页。
gitignore