admin 管理员组

文章数量: 1086019

报错类型:

OpenSSL SSL_connect: Connection was reset in connection to http://github:443

前提:计算机已经开了VPN代理,造成无法正常通过github完成push/pull等操作

解决方法:

在终端中输入:

git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890

注意:这里的《7890》是相应VPN代理的端口号,如果是clash软件默认是这个端口号。所以需要根据自己的代理软件进行调整。

本文标签: 错误 网络 GitHub VPN