九十七、fatal: unable to access ‘https://github.com/flasky.git/‘: OpenSSL SSL_read: Conne 解决

报错:fatal: unable to access 'https://github.com/miguelgrinberg/flasky.git/': OpenSSL SSL_read: Connection was reset, errno 10054

九十七、fatal: unable to access ‘https://github.com/flasky.git/‘: OpenSSL SSL_read: Conne 解决_第1张图片

解决

一般是 因为 服务器的SSL证书没有经过第三方机构的签署 或者是 代理的原因,第一条取消SSL验证,其余两条取消http 和https 代理

分布执行

git config --global http.sslVerify false
git config --global --unset http.proxy
git config --global --unset https.proxy

效果

九十七、fatal: unable to access ‘https://github.com/flasky.git/‘: OpenSSL SSL_read: Conne 解决_第2张图片


你可能感兴趣的:(Git,问题解决,git)