本文主要是介绍git push github失败,提示:Failed with error: unable to access '':OpenSSL SSL_connect: SSL_ERROR_SYSCALL,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
git push 异常
Failed with error: unable to access : OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
今天用git提交代码突然出现错误,网上所有的方法都尝试了一遍还是出现同样的问题,最后把网络切换到4G完美解决。
通常都有以下解决方法:
1.重新生成SSH Key,参考github
https://help.github.com/en/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent#adding-your-ssh-key-to-the-ssh-agent%20for%20instructions
2.Idea中不使用代理
在Idea File->Settings->Http Proxy,勾选 No Proxy
3.执行取消代理的命令
git config --global --unset http.proxy
git config --global --unset https.proxy
4.执行不验证SSL的命令
env GIT_SSL_NO_VERIFY=true git clone https://<host_name/git/project.git
git config http.sslVerify "false"
这篇关于git push github失败,提示:Failed with error: unable to access '':OpenSSL SSL_connect: SSL_ERROR_SYSCALL的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!