git clone速度太慢的解决办法

git clone特别慢是因为github.global.ssl.fastly.net域名被限制了。

只要找到这个域名对应的ip地址,然后在hosts文件中加上ip–>域名的映射,刷新DNS缓存便可。

实施:


1.在网站https://www.ipaddress.com/分别搜索:


github.global.ssl.fastly.net 得到ip:---->199.232.69.194


github.com  得到ip:---->140.82.112.4


2.打开hosts文件

Windows上的hosts文件路径在C:\Windows\System32\drivers\etc\hosts

Linux的hosts文件路径在:sudo vim /etc/hosts


3.在hosts文件末尾添加两行(对应上面查到的ip)


199.232.69.194  github.global-ssl.fastly.net


140.82.112.4  github.com


4.保存更新DNS


Winodws系统的做法:打开CMD,输入ipconfig /flushdns


Linux的做法:在终端输入sudo /etc/init.d/networking restar

你可能感兴趣的:(git clone速度太慢的解决办法)