git克隆速度太慢的解决方法

 

https://blog.csdn.net/hzwwpgmwy/article/details/79043251

第一步:

直接把网址对应的IP放进hosts文件,这样就省去了DNS解析的时间,

步骤如下:

1、查找域名对应的ip地址,并修改hosts文件

nslookup github.global.ssl.fastly.Net
nslookup github.com 

在这里插入图片描述
将下列内容加入 /etc/hosts文件中

151.101.76.249 http://global-ssl.fastly.net
192.30.255.113 http://github.com  #此处112还是113根据自己的情况调整?

2、刷新DNS缓存
linux:

sudo /etc/init.d/networking restart

windows:

ipconfig /flushdns

mac:

 sudo killall -HUP mDNSResponder

 

 

第二步:

https://www.jianshu.com/p/fe5612c1bdd0

克隆时只拷贝最后一次commit:

git clone --depth=1 https://......

你可能感兴趣的:(linux)