从 git 历史中删除文件
Remove Files From Git History
原文链接: https://typonotes.com/posts/2023/02/06/remove-files-from-git-history/
github 官方推荐使用 bfg
进行操作, 比使用 git filter-branch
更快, 更方便
查询文件
$ git rev-list --all | xargs -rL1 git ls-tree -r --long | sort -uk3 | sort -rnk4 | head -10
删除文件
|
|
- 原文链接:https://typonotes.com/posts/2023/02/06/remove-files-from-git-history/
- 本文为原创文章,转载注明出处。
- 欢迎 扫码关注公众号
Go与云原生
或 订阅网站 https://typonotes.com/ 。 - 第一时间看后续精彩文章。觉得好的话,请猛击文章右下角「在看」,感谢支持。