我重写了我的存储库的历史以删除一些使用git filter-branch
. 我主要关注的是关于删除敏感数据的 Github 文章以及互联网上其他地方的类似说明:
删除大型 FLV:
git filter-branch --index-filter 'git rm --cached --ignore-unmatch public/video/*.flv' --prune-empty -- --all
删除原始参考:
rm -rf .git/refs/original/
清除 reflog:
git reflog expire --expire=now --all
修剪不可达对象:
git gc --prune=now
积极修剪不可到达的对象:
git gc --aggressive --prune=now
重新包装东西:
git repack -A -d
我的 gitdir 仍然是 205 MB,几乎完全包含在一个包文件中:
$ du -h .git/objects/pack/*
284K .git/objects/pack/pack-f72ed7cee1206aae9a7a3eaf75741a9137e5a2fe.idx
204M .git/objects/pack/pack-f72ed7cee1206aae9a7a3eaf75741a9137e5a2fe.pack
使用这个脚本,我可以看到我删除的 FLV 仍然包含在包中:
All sizes are in kB's. The pack column is the size of the object, compressed, inside the pack file.
size pack SHA location
17503 17416 1be4132fa8d91e6ce5c45caaa2757b7ea87d87b0 public/video/XXX_FINAL.flv
17348 17261 b7aa83e187112a9cfaccae9206fc356798213c06 public/video/YYY_FINAL.flv
....
git clone --bare my-repo
通过产量克隆存储库,my-repo.git
其大小也是 205MB。
我该怎么做才能从包中删除这些(可能)未引用的对象并将我的存储库缩小到如果它们从未被提交时的大小?如果它们仍然以某种方式被引用,有没有办法告诉哪里?
更新
在尝试重新运行git filter-branch
时,我收到了以下通知:
Cannot create a new backup.
A previous backup already exists in refs/original/
Force overwriting the backup with -f
我验证了没有refs .git/refs/original
,确实,该目录根本不存在。还有其他一些我不知道的 git 存储参考的方式吗?