fatal: unable to access 'https://github.com.git/': OpenSSL SSL_read: Connection was reset, errno 10054
解决方案一
关闭ssl证书
git config --global http.sslVerify "false"
fatal: unable to access 'https://github.git/': Failed to connect to github.com port 443: Timed out
关闭全局代理
git config --global --unset http.proxy
解决方案二
在开启shadowsocks的前提下,手动配置git的代理。git客户端输入如下两个命令就可以了。
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080
http://也可以改成sockets5://,但是区别在于:socks5不支持通过pubkey免密登录github,每次提交代码只能输入用户名和密码。http可以支持免密登录。
取消代理:
git config --global --unset http.proxy
git config --global --unset https.proxy
解决方案三
到window 中找到了host
打开编辑 注释掉 github的地址