转载自:https://www.jianshu.com/p/3f6477049ece
git clone特别慢是因为github.global.ssl.fastly.net
域名被限制了。
只要找到这个域名对应的ip地址,然后在hosts文件中加上ip–>域名的映射,刷新DNS缓存便可。
1.在网站 https://www.ipaddress.com/ 分别搜索两个网址的数字ip:
github.global.ssl.fastly.net
github.com
2.修改hosts文件
- Windows上的hosts文件路径在
C:\Windows\System32\drivers\etc\hosts
- Linux的hosts文件路径在:
sudo vim /etc/hosts
在hosts文件末尾加上如下两行:
151.101.185.194 github.global-ssl.fastly.net
192.30.253.112 github.com
3.更新DNS
- Winodws系统的做法:打开CMD,输入
ipconfig /flushdns
- Linux的做法:在终端输入
sudo /etc/init.d/networking restart
完成!!!