上网查找改善方法解决了问题:
思路:git clone 特别慢是因为github.global.ssl.fastly.Net域名被限制了。只要找到这个域名对应的ip地址,然后在hosts文件中加上ip–>域名的映射,刷新DNS缓存就可以了
1.获取 global.ssl.fastly地址
访问 http://github.global.ssl.fastly.net.ipaddress.com/#ipinfo
获取cdn域名以及ip地址
2、获取github地址
访问 http://github.com.ipaddress.com/#ipinfo
获取cdn域名以及ip地址
3、打开hosts映射
Windows环境:
C:\Windows\System32\drivers\etc\hosts
最末尾添加两句话:
151.101.185.194 http://github.global.ssl.fastly.net
192.30.253.112 http://github.com
Linux环境:
sudo vim /etc/hosts
添加
151.101.185.194 http://github.global.ssl.fastly.net
192.30.253.112 http://github.com
or ??
151.101.185.194 github.global.ssl.fastly.net
192.30.253.112 github.com
4.重启网络:
linux:
/etc/init.d/networking restart
windows:
打开CMD
输入ipconfig /flushdns