“git pull”内存不足

时间:2017-11-15 20:44:48

标签: git github

我厌倦了git pull,它突然出来..

请让我知道我必须做什么

","

1 个答案:

答案 0 :(得分:3)

如果您有权访问远程服务器,请尝试在其上打开ssh会话并键入:

git config pack.windowMemory 10m
git config pack.packSizeLimit 20m

但是如果你不这样做,你将不得不进行一些浅层提取,以便一次获取所有历史记录。

git clone /url/of/remote/repo --depth=1
git fetch --depth=10
git fetch --depth=20
...
git fetch --depth=100
git fetch --unshallow    //Downloads all history allowing to push from repo