解决访问Github出现的Couldn‘t connect to server错误

文章目录

  • 前言
  • 原因分析以及解决办法
    • 原因分析
    • 解决办法
  • 参考

前言

在Github上面克隆代码仓库出现Failed to connect to 127.0.0.1 port 1080 after 2063 ms: Couldn't connect to serverFailed to connect to github.com port 443 after 21083 ms: Couldn't connect to server等提示Couldn't connect to server错误,无法正常下载。通过下面办法得以解决,故记录下来以供后续参考,也为大家提供一些思路。

原因分析以及解决办法

原因分析

出现Couldn’t connect to server的原因多半是因为先前通过下述终端命令设置了github的访问代理,取消即可正常访问。

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

解决办法

  1. 确保自己能够ping得通github.com。
  2. 依次在Git Bash中输入下面两行命令,然后在执行clone命令就好了!
git config --global --unset http.proxy
git config --global --unset https.proxy

解决访问Github出现的Couldn‘t connect to server错误_第1张图片

参考

  1. 解决 Failed to connect to github.com port 443:connection timed out
  2. [报错解决] Failed to connect to github.com port 443 after ***** ms: Couldn‘t connect to server

收集整理和创作不易, 若有帮助, 请帮忙点赞收藏❤️, 谢谢!✨✨

你可能感兴趣的:(Windows,github)