1. 首先找出占用空间最大的文件列表
git rev-list --objects --all | grep "$(git verify-pack -v .git/objects/pack/*.idx | sort -k 3 -n | tail -10 | awk '{print$1}')"
b2bda4b5b6bf62a8530a9535264d2cccbd367bc3 autogen/pb/order.pb.go
bec95bd55069dde5fc87315ffd1ea5a3be2a7127 autogen/pb/stats.pb.go
2. 从历史commits中删除
git filter-branch --force --index-filter 'git rm -rf --cached --ignore-unmatch 文件' --prune-empty --tag-name-filter cat -- --all
e,g: git filter-branch --force --index-filter 'git rm -rf --cached --ignore-unmatch autogen/pb/order.pb.go' --prune-empty --tag-name-filter cat -- --all
反复执行1,2步,直到第一步无法列出任何任何内容
3. 压缩并推送到远程
rm -rf .git/refs/original/
git reflog expire --expire=now --all
git gc --aggressive --prune=now
git push origin --tags --force
git push origin --all --force