标签:config fatal tps err ssl code global als port
1 Ruby@DESKTOP-4INK1I3 MINGW64 /f/Git/test (master) 2 $ git push origin master 3 fatal: unable to access ‘https://github.com/xxx/test.git/‘: OpenSSL SSL_read: Connection was reset, errno 10054 4 5 6 Ruby@DESKTOP-4INK1I3 MINGW64 /f/Git/test (master) 7 $ git push origin master 8 fatal: unable to access ‘https://github.com/xxx/test.git/‘: Failed to connect to github.com port 443: Timed out
Git连接GitHub过程中,遇到以上问题,可以用以下两行命令解决:
1 git config --global http.sslVerify "false" 2 git config --global --unset http.proxy
2021-04-23【Git连接GitHub过程中遇到的问题】
标签:config fatal tps err ssl code global als port
原文地址:https://www.cnblogs.com/RubyYoung/p/14696021.html