我厌倦了git pull,它突然出来..
请让我知道我必须做什么
","
答案 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