tips:操作需谨慎,此操作比较危险文章来源地址https://www.toymoban.com/news/detail-660861.html
- 查看前15个大文件
git rev-list --objects --all | grep "$(git verify-pack -v .git/objects/pack/*.idx | sort -k 3 -n | tail -15 | awk '{print$1}')"
- 删除文件夹(public/housimg文件夹目录)
git filter-branch --tree-filter 'rm -rf public/housimg' --tag-name-filter cat -- --all
- 回收内存
rm -rf .git/refs/original/
git reflog expire --expire=now --all
git fsck --full --unreachable
git repack -A -d
git gc --aggressive --prune=now
- 提交变动
git push --force --all
文章来源:https://www.toymoban.com/news/detail-660861.html
到了这里,关于.git内存清理方式的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!