gitignore 在已忽略文件夹中不忽略指定文件、文件夹【注意项】

  1. 在已忽略文件夹中不忽略指定文件夹
    /node_modules/* www
    !/node_modules/layer/
  2. 在已忽略文件夹中不忽略指定文件夹
    /node_modules/*
    !/node_modules/layer/layer.js

【注意项】注意写法 要忽略的文件夹一定要结尾 /* ,否则不忽略规则将无法生效

你可能感兴趣的:(gitignore 在已忽略文件夹中不忽略指定文件、文件夹【注意项】)