Git clone克隆出现错误

 问题描述

起初遇到的问题

 fatal: unable to access 'https://github.com*******': OpenSSL SSL_read: Connection was reset, errno 10054

然后通过搜刮一顿操作做猛如虎尝试了网上的方法

查看了代理地址

 进行代理地址修改操作


    git config --global http.proxy http://127.0.0.1:10809

    git config --global https.proxy http://127.0.0.1:10809

结果还是报错

  Failed to connect to 127.0.0.1 port 10809 after 2077 ms: Connection refused

然后又取消了代理尝试一下下面的方法

git config --global --unset http.proxy  
git config --global --unset https.proxy

详细的历程如下,经过反反复复的折腾成功了就好哈哈哈哈哈哈哈哈

猜你喜欢

转载自blog.csdn.net/qq_35353972/article/details/127487433