标签: git
我试图像这样做一个过滤器分支来摆脱一些大文件:
git filter-branch --prune-empty --index-filter "git rm --cached -f --ignore-unmatch largedir*" --tag-name-filter cat -- --all
但是,我发现即使在新的克隆之后,大对象仍然存在于'objects'目录中的存储库中。 有没有办法根据git找出为什么仍然需要这些对象?