使用git clone 报错:error: RPC failed; curl 56 OpenSSL SSL_read: SSL_EfRROR_SYSCALL。
完整的解决过程。具体细分每一步:1.输入代码:git config http.sslVerify "false"继续报错:2.输入代码:git init3.再次执行:git config http.sslVerify "false"问题解决,若继续报错为:4.继续输入代码为://取消http代理git config --global --unset http.proxy//取消https代理git
·
完整的解决过程。
具体细分每一步:
1.输入代码:
git config http.sslVerify "false"
继续报错:2.输入代码:
git init
3.再次执行:
git config http.sslVerify "false"
问题解决,若继续报错为:
4.继续输入代码为:
//取消http代理
git config --global --unset http.proxy
//取消https代理
git config --global --unset https.proxy
问题解决。
更多推荐
所有评论(0)