红联Linux门户
Linux帮助

Ubuntu下git clone问题fata: ubable to connect to github.com

发布时间:2016-08-22 15:20:50来源:linux网站作者:小近视爱老花镜
当使用git clone命令下载git协议的URL时,无法连接,会出现如下错误:
fata: ubable to connect to github.com
 
查看了网上很多资料,发现这是由于防火墙导致的,Git协议要求防火墙开放9418端口,而企业级防火墙一般不允许对这个非标准端口的访问。
 
解决方法就是将git协议换位https,就可以了。
git config --global url."https://".insteadof git://
 [我是通过这种方法解决的,网上还有其他方式,如下]:
git clone https://github.com/angular/angular-phonecat.git
 
本文永久更新地址:http://www.linuxdiyf.com/linux/23530.html