当前位置:   article > 正文

Github上git clone失败:Failed to connect to github.com port 443: Connection timed out_git克隆github 链接失败

git克隆github 链接失败
  • 问题:
    github上git clone失败:Failed to connect to github.com port 443: Connection timed out

  • 解决办法:
    网页上使用VPN可以打开github,说明在拉取代码时没有使用VPN进行代理。使用客户端的VPN,设置服务器使用客户端的VPN。

# 设置代理
git config --global http.proxy x.x.x.x:7890
git config --global https.proxy x.x.x.x:7890

# 查看代理
git config --global --get http.proxy
git config --global --get https.proxy

# 下载
git clone --recurse-submodules https://github.com/cvg/DeepLSD.git

# 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

参考资料
Git报错: Failed to connect to github.com port 443 解决方案

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/460325
推荐阅读
相关标签
  

闽ICP备14008679号