核弹级的git指令 git filter-branch
Posted fwindpeak
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了核弹级的git指令 git filter-branch相关的知识,希望对你有一定的参考价值。
比如一不小心把node模块目录加入git仓库了,导致仓库很大 :
git filter-branch --index-filter ‘git rm --cached --ignore-unmatch -fr ./node_modules‘ -- --all
如果不保留空的提交,可以这样:
git filter-branch -f --prune-empty --index-filter ‘git rm --cached --ignore-unmatch -fr ./image‘ -- --all
还有批量修改邮件地址等操作,参考这里: https://git-scm.com/docs/git-filter-branch
以上是关于核弹级的git指令 git filter-branch的主要内容,如果未能解决你的问题,请参考以下文章