美文网首页
0_Cmake 3.16.3配置的若干问题(计算机图形学)

0_Cmake 3.16.3配置的若干问题(计算机图形学)

作者: shayito | 来源:发表于2021-08-18 16:31 被阅读0次

问题1
fatal: unable to access 'https://github.com/.......': OpenSSL SSL_read: Connection was reset, errno 10054
解决方法:不验证 SSL :
git config --global http.sslVerify "false"

问题2
fatal: unable to access 'https://github.com/......': Failed to connect to github.com port 443: Timed out
解决方法:取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
设置代理
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890

查询端口号

参考资料1:https://stackoverflow.com/questions/783811/getting-git-to-work-with-a-proxy-server-fails-with-request-timed-out
参考资料2:https://blog.csdn.net/Hodors/article/details/103226958 (的评论区)

参考资料截图1 参考资料2截图

问题3
error: RPC failed; curl 28 OpenSSL SSL_read: Connection was reset, errno 10054 fatal: expected flush after ref listing
解决方法:
git config --global http.sslVerify "false"

相关文章

网友评论

      本文标题:0_Cmake 3.16.3配置的若干问题(计算机图形学)

      本文链接:https://www.haomeiwen.com/subject/mkvgbltx.html