我重写了我的存储库的历史记录,使用
git filter-branch
删除了一些大型 FLV 文件。我主要遵循了关于“删除敏感数据”的 Github 文章以及在互联网其他地方找到的类似说明:
删除大 FLV:
git filter-branch --index-filter 'git rm --cached --ignore-unmatch public/video/*.flv' --prune-empty -- --all
删除原始参考:
rm -rf .git/refs/original/
清除引用日志:
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
我验证了
.git/refs/original
中没有引用,事实上,该目录根本不存在。 git 是否还有其他我不知道的存储引用的方式?
克隆存储库的新副本后,我能够运行上述命令第一次尝试也是在一个新的克隆上执行的,我没有对其进行任何修改,因此对于为什么 FLV 文件继续在包文件中徘徊,我没有令人满意的解释。
我最初提交了下面的答案,认为我在删除git repack -a
.git/refs/original
导致了问题,导致原始引用被打包,所以当我did
删除
.git/refs/original
时没有任何效果;我原来的参考文献仍然会引用大型 FLV 文件。然而,这似乎并不成立。在新克隆的存储库副本上运行上述命令,并在 git repack -a
之后立即添加
git filter-branch
似乎不会影响结果 - FLV 文件仍会从 packfile 中清除。我没有理由相信这与原来的问题有关。
还有其他我不知道的 git 存储引用的方式吗?
有。事实证明,我对上面列出的命令顺序并不完全真实。我已经运行了
git repack -a
before
运行
rm -rf .git/refs/original
,Git 已经将引用打包走了(待确定在哪里;现在正在尝试)。当我运行rm -rf .git/refs/original
时,没有任何内容被删除。
git gc
无法缩小我的包文件,因为由于打包的
refs/original
参考,我did仍然对旧文件有挥之不去的引用。 只想戒掉
I want to die
Just want to die
End of my life
My life is nothing but pain
Just want to end it all
END ME