标签: git gitignore
我想在我的.gitignore中设置一些规则,其中任何名称包含“_nogit”的目录或文件都将被忽略。
示例:
谢谢 -
答案 0 :(得分:4)
如果你的.gitignore文件中有一行没有斜线,那么git会将它视为shell glob模式。因此,向*_nogit*添加.gitignore将忽略所有这些文件。
.gitignore
git
*_nogit*
另请参阅gitignore man page。
gitignore