当前位置:   article > 正文

linux fatal: git clone git://github.com/...下载失败_无法从git下载 linux

无法从git下载 linux

解决方案

配置前四句,最后一句输入下载命令。

git config --global http.https://github.com.proxy http://127.0.0.1:8080
git config --global https.https://github.com.proxy https://127.0.0.1:8080
git config --global  --unset https.https://github.com.proxy 
git config --global  --unset http.https://github.com.proxy 
git clone git://github.com/gnuradio/gnuradio.git
  • 1
  • 2
  • 3
  • 4
  • 5

案例问题

  • 终端输入
git clone git://github.com/gnuradio/gnuradio.git
  • 1
  • 报错github.com连接失败
正克隆到 'gnuradio'...
fatal: unable to connect to github.com:
github.com[0: 140.82.113.3]: errno=连接超时
  • 1
  • 2
  • 3
  • 试错用http代替git
git config --global url."https://github.com".insteadOf git://github.com
git clone git://github.com/gnuradio/gnuradio.git
  • 1
  • 2
  • 报错
正克隆到 'gnuradio'...
fatal: unable to access 'https://github.com/gnuradio/gnuradio.git/': gnutls_handshake() failed: The TLS connection was non-properly terminated.
  • 1
  • 2
  • 解决
git config --global http.https://github.com.proxy http://127.0.0.1:8080
git config --global https.https://github.com.proxy https://127.0.0.1:8080
git config --global  --unset https.https://github.com.proxy 
git config --global  --unset http.https://github.com.proxy 
git clone git://github.com/gnuradio/gnuradio.git
  • 1
  • 2
  • 3
  • 4
  • 5

参考连接

链接1: fatal unable to connect to github.com解决方案
链接2: gnutls_handshake() failed: The TLS connection was non-properly terminated

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

闽ICP备14008679号