git|git .ignore忽略文件夹中除了指定的文件外的其他所有文件

只有二级目录的情况

//.ignore忽略文件夹中除了指定的文件外的其他所有文件 **/node_modules/*//忽略文件夹node_modules !**/node_modules/vue-html5-editor/ //不包含vue-html5-editor文件夹

如果有多级目录
要保留:vue-html5-editor.js

git|git .ignore忽略文件夹中除了指定的文件外的其他所有文件
文章图片
【git|git .ignore忽略文件夹中除了指定的文件外的其他所有文件】
//错误写法 **/node_modules/*//忽略文件夹node_modules !**/node_modules/vue-html5-editor/dist///这样写是不生效的//正确写法 **/node_modules/* !**/node_modules/vue-html5-editor/ **/node_modules/vue-html5-editor/* !**/node_modules/vue-html5-editor/dist

    推荐阅读