内容简介:.gitignore是Git工具的配置文件,用于屏蔽某些文件上传到线上。项目路径下添加.gitignore文件
.gitignore是Git工具的配置文件,用于屏蔽某些文件上传到线上。
1、创建.gitignore
项目路径下添加.gitignore文件
touch .gitignore
2、编辑.gitignore文件,建立下面的规则
3、创建个test文件, git status 测试是否忽略
git status
已经忽略test文件
配置无效几种情况
- 命令格式错误
- 在配置语句的前后面添加空格、Tab、注释等,会导致当前行的配置语句失效
- 配置语句对已经add、commit的文件无效(.gitignore只能忽略原来没有被追踪的文件,如已被纳入了版本管理中,则修改.gitignore是无效的。)
第三种情况解决办法:删除本地缓存
git rm -r --cached . git add . git commit -m 'update .gitignore'
以上所述就是小编给大家介绍的《Git中使用.gitignore忽略文件的推送》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Elements of Statistical Learning
Trevor Hastie、Robert Tibshirani、Jerome Friedman / Springer / 2009-10-1 / GBP 62.99
During the past decade there has been an explosion in computation and information technology. With it have come vast amounts of data in a variety of fields such as medicine, biology, finance, and mark......一起来看看 《The Elements of Statistical Learning》 这本书的介绍吧!
URL 编码/解码
URL 编码/解码
XML、JSON 在线转换
在线XML、JSON转换工具