项目场景:unable to access ‘https://github.com/youngyangyang04/PowerVim.git/’: OpenSSL SSL_connect: Connection was reset in connection to github.com:443
提示:这里简述项目相关背景:
项目场景:Fatal error as follows :can’t get access to a website
问题描述
用gitGuI出现如下情况
或者命令行这样的情况
D:\GIT>git clone https://github.com/youngyangyang04/PowerVim.git
Cloning into 'PowerVim'...
fatal: unable to access 'https://github.com/youngyangyang04/PowerVim.git/': OpenSSL SSL_connect: Connection was reset in connection to github.com:443
原因分析:
我只有第二种方法成功了,可能是部分加速器的问题
网络代理后虽然加快了访问GitHub的速度(好像也不见得?!)结果git clone指令连接失效了,可能是链接被重置的关系
解决方案:
具体解决方案:查看的网络上有的第一种解决方案
在git bash命令行中依次输入以下命令:
git config --global http.sslBackend "openssl"
git config --global http.sslCAInfo "C:\Program Files\Git\mingw64\ssl\cert.pem"
注意上面第二个命令,路径要换成git安装的路径。
也就是上面这个文件夹,但这个是我安装在C盘默认安装的结果
但我发现我的似乎还是没成功吖?
第二种解决方案:好像可能是系统代理的关系,可以试试关闭所有代理,我的成功了!!
把计算机的代理和加速全部关掉,就可以了
The more you know the less you get worried
版权归原作者 shika_song 所有, 如有侵权,请联系我们删除。