Github clone报错解决方法

remote: Enumerating objects: 444, done.
remote: Counting objects: 100% (444/444), done.
remote: Compressing objects: 100% (286/286), done.
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 60
fatal: 远端意外挂断了
fatal: 过早的文件结束符(EOF)
fatal: index-pack 失败

errorn 56 因为有大文件无法下载成功,需要把git的http缓存设置调整大

git config http.postBuffer 524288000
git config https.postBuffer 524288000

猜你喜欢

转载自blog.csdn.net/u013772433/article/details/102607878