美文网首页
项目大文件Git Clone 慢的解决办法 (亲测有效)

项目大文件Git Clone 慢的解决办法 (亲测有效)

作者: 任天一 | 来源:发表于2020-05-01 02:08 被阅读0次

host重定向,本人测试效果一般

git clone特别慢可能是因为github的域名被限制了。
通过http://tool.chinaz.com/dns分别寻找github.comgithub.global.ssl.fastly.net
最高效地址,就是TTL最短的IP地址。

然后按照下面的格式,添加到
Windows上的hosts文件路径在C:\Windows\System32\drivers\etc\hosts
Mac/Linux的hosts文件路径在:sudo vim /etc/hosts
文件中
192.xx.xxx.xxx github.com
103.xxx.xxx.xxx github.global.ssl.fastly.net

刷线dns即可
Windows刷新dns: ipconfig /flushdns
Linux刷新dns: systemctl restart nscd 或者 /etc/init.d/nscd restart
Mac刷新dns:
[最新的 OS X Mountain Lion or Lion 上刷新DNS]
sudo killall -HUP mDNSResponder
[较新的苹果Mac OS X系统刷新DNS]
type dscacheutil -flushcache
[比较老的刷新DNS]
lookupd -flushcache

相关文章

网友评论

      本文标题:项目大文件Git Clone 慢的解决办法 (亲测有效)

      本文链接:https://www.haomeiwen.com/subject/hzzxghtx.html