我正在与之交互的git存储库中有一个巨大的软件包文件(1.7Gb!),因此我尝试遵循this post。我可以使用git filter-branch
,但是当我运行git gc --aggressive --prune=now
时,会得到:
$ git gc --aggressive --prune=now
Counting objects: 119622, done.
Delta compression using up to 4 threads.
error: pack-objects died of signal 9517)
error: failed to run repack
我已经尝试使用git config --global pack.threads "2"
将线程降低到2和1,但这没有帮助。
谢谢!