标签: git gitignore
我们的项目中有一些名为dist的文件夹。这些将被git忽略。另一方面,只需将dist/放入.gitignore文件,在使用bower时就会产生副作用,因为bower_components/中的dist文件夹也会被忽略。
dist
dist/
.gitignore
bower_components/
有关如何正确定义规则的任何建议,忽略dist以外的bower_components个文件夹?
bower_components
答案 0 :(得分:15)
不确定
dist/ !bower_components/**/dist/