码迷,mamicode.com
首页 > 其他好文 > 详细

Git 设置过滤忽略的文件或文件夹(ignore file)

时间:2017-07-23 22:37:02      阅读:492      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!