标签:log dao detail strong str word test blank tps
我们一般向代码仓库提交项目的时候,一般需要忽略编译生成的中间文件以及文件夹的提交,因为它们是无用的,而且也会占用仓库的空间。一般只用提交.pro,.sln,makefile,程序源文件等编译必须用到的文件,所以是有这样的需求的。
在仓库目录下新建一个名为.gitignore的文件(因为是点开头,没有文件名,没办法直接在windows目录下直接创建,必须通过右键Git Bash,按照Linux的方式来新建.gitignore文件)。
touch .gitignore
编辑内容示例:
.DS_Store node_modules/ dist/ npm-debug.log* yarn-debug.log* yarn-error.log* test/unit/coverage test/e2e/reports selenium-debug.log
参考:http://blog.csdn.net/benkaoya/article/details/7932370
https://zhidao.baidu.com/question/2053485325521871027.html
Git 设置过滤忽略的文件或文件夹(ignore file)
标签:log dao detail strong str word test blank tps
原文地址:http://www.cnblogs.com/xiangsj/p/7225985.html