一、window系统下使用“git clone”命令将GitHub上的仓库复制到本地时出现
“git clone :unable to access github: OpenSSL SSL_read: Connection was
reset, errno 10054”
报错,导致项目clone失败
二、原因
由于Http协议错误,当 pull 或者 clone 的时候,github被墙屏蔽
三、解决方法
//1.先修改设置解除ssl验证
git config --global http.sslVerify "false
//2.然后重新clone即可
git clone 仓库地址
参考
https://blog.csdn.net/Jxianxu/article/details/115598869