《脚手架----1.git clone错误》

error: RPC failed; curl 18 transfer closed with outstanding read data remaining

1.错误信息

Cloning into ‘postgres’…
remote: Enumerating objects: 1, done.
remote: Counting objects: 100% (1/1), done.
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed

2.操作

//增加大约1G buffer
D:\CodePractice\database>git config --global http.postBuffer 1024000000

3.验证

D:\CodePractice\database>git config -l

4.再次clone

error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054

1.错误

Cloning into ‘postgres’…
remote: Enumerating objects: 1, done.
remote: Counting objects: 100% (1/1), done.
error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed

2.操作

D:\CodePractice\database>git config --global http.sslVerify "false"

3.验证

D:\CodePractice\database>git config -l

4.再次clone

发布了6 篇原创文章 · 获赞 1 · 访问量 221

猜你喜欢

转载自blog.csdn.net/weixin_39939108/article/details/104187858