git 排除已经加入版本控制的文件、目录

[yeqiang@localhost tmp]$ mkdir testignore
[yeqiang@localhost tmp]$ cd testignore/
[yeqiang@localhost testignore]$ git init .
Initialized empty Git repository in /tmp/testignore/.git/
[yeqiang@localhost testignore]$ mkdir src bin
[yeqiang@localhost testignore]$ echo a > src/a.c
[yeqiang@localhost testignore]$ echo a.out > bin/a.out
[yeqiang@localhost testignore]$ git add *
[yeqiang@localhost testignore]$ git commit -m "first commit"
[master (root-commit) 65ee91c] first commit
 2 files changed, 2 insertions(+)
 create mode 100644 bin/a.out
 create mode 100644 src/a.c
[yeqiang@localhost testignore]$ git status 
On branch master
nothing to commit, working tree clean
[yeqiang@localhost testignore]$ echo "垃圾" > dirt.txt
[yeqiang@localhost testignore]$ git add dirt.txt 
[yeqiang@localhost testignore]$ git commit -m "错误提交了垃圾文件"
[master 9c76fbe] 错误提交了垃圾文件
 1 file changed, 1 insertion(+)
 create mode 100644 dirt.txt
[yeqiang@localhost testignore]$ git status 
On branch master
nothing to commit, working tree clean
[yeqiang@localhost testignore]$ vim .gitignore
[yeqiang@localhost testignore]$ git add .gitignore 
[yeqiang@localhost testignore]$ git rm --cached -r bin/
rm 'bin/a.out'
[yeqiang@localhost testignore]$ git rm --cached dirt.txt 
rm 'dirt.txt'
[yeqiang@localhost testignore]$ git status 
On branch master
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
	new file:   .gitignore
	deleted:    bin/a.out
	deleted:    dirt.txt

[yeqiang@localhost testignore]$ git commit -m "忽略文件、目录"
[master 50c89a4] 忽略文件、目录
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 100644 .gitignore
 delete mode 100644 bin/a.out
 delete mode 100644 dirt.txt
[yeqiang@localhost testignore]$ git status 
On branch master
nothing to commit, working tree clean
[yeqiang@localhost testignore]$ echo "fdfdfdfd" > dirt.txt 
[yeqiang@localhost testignore]$ git status 
On branch master
nothing to commit, working tree clean

其中.gitignore内容

bin/
dirt.txt

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
这几年越来越多的开发团队使用了Git,掌握Git的使用已经越来越重要,已经是一个开发者必备的一项技能;但很多人在刚开始学习Git的时候会遇到很多疑问,比如之前使用过SVN的开发者想不通Git提交代码为什么需要先commit然后再去push,而不是一条命令一次性搞定;更多的开发者对Git已经入门,不过在遇到一些代码冲突、需要恢复Git代码时候就不知所措,这个时候哪些对 Git掌握得比较好的少数人,就像团队中的神一样,在队友遇到 Git 相关的问题的时候用各种流利的操作来帮助队友于水火。我去年刚加入新团队,发现一些同事对Git的常规操作没太大问题,但对Git的理解还是比较生疏,比如说分支和分支之间的关联关系、合并代码时候的冲突解决、提交代码前未拉取新代码导致冲突问题的处理等,我在协助处理这些问题的时候也记录各种问题的解决办法,希望整理后通过教程帮助到更多对Git操作进阶的开发者。本期教程学习方法分为“掌握基础——稳步进阶——熟悉协作”三个层次。从掌握基础的 Git的推送和拉取开始,以案例进行演示,分析每一个步骤的操作方式和原理,从理解Git 工具的操作到学会代码存储结构、演示不同场景下Git遇到问题的不同处理方案。循序渐进让同学们掌握Git工具在团队协作中的整体协作流程。在教程中会通过大量案例进行分析,案例会模拟在工作中遇到的问题,从最基础的代码提交和拉取、代码冲突解决、代码仓库的数据维护、Git服务端搭建等。为了让同学们容易理解,对Git简单易懂,文章中详细记录了详细的操作步骤,提供大量演示截图和解析。在教程的最后部分,会从提升团队整体效率的角度对Git工具进行讲解,包括规范操作、Gitlab的搭建、钩子事件的应用等。为了让同学们可以利用碎片化时间来灵活学习,在教程文章中大程度降低了上下文的依赖,让大家可以在工作之余进行学习与实战,并同时掌握里面涉及的Git不常见操作的相关知识,理解Git工具在工作遇到的问题解决思路和方法,相信一定会对大家的前端技能进阶大有帮助。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值