gitignore 忽略某文件夹下 非某后缀名的文件
Posted yqmcu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gitignore 忽略某文件夹下 非某后缀名的文件相关的知识,希望对你有一定的参考价值。
忽略指定文件夹下的除某一文件之外的其他文件
parent_dir/!spec_file_name.html
忽略指定文件夹下的除某一类后缀名的文件
parent_dir/*[!*.html]
注意:若文件夹中含有 .h 可能会被当成特殊文件 不被忽略,需要写成
parent_dir/*[!*tml]
可以忽略掉 *.h 文件
以上是关于gitignore 忽略某文件夹下 非某后缀名的文件的主要内容,如果未能解决你的问题,请参考以下文章
git提交代码时,Unstaged changes如何过滤.class .log等文件