解决git clone速度慢问题(无需代理)

解决git clone速度慢问题

原因:git clone特别慢是因为github.global.ssl.fastly.net域名被限制了。只要找到这个域名对应的ip地址,然后在hosts文件中加上ip–>域名的映射,刷新DNS缓存便可。

1.在hosts文件末尾添加两行

github.com 192.30.253.112
github.global.ssl.fastly.Net 151.101.229.194

ip地址有可能变化,要自己通过 win+R => cmd => ping github.com(github.global.ssl.fastly.Net同理)适当更改测试
在这里插入图片描述

修改hosts文件
Windows上的hosts文件路径在
C:\Windows\System32\drivers\etc\hosts
在这里插入图片描述
最好dns设置为8.8.8.8 可以通过360 DNS优选更改(不强制,自己测试)
解决git clone速度慢问题(无需代理)_第1张图片

2、刷新DNS缓存

在这里插入图片描述

Linux:
sudo /etc/init.d/networking restart

Windows:
ipconfig /flushdns

3、测试效果

解决git clone速度慢问题(无需代理)_第2张图片
速度已达到5M/s(本人宽带峰值)

真的不稳定,各位还是开代理吧!https://blog.csdn.net/qq_41043722/article/details/105369674
需要代理的私聊!!!稳定V2ray
参考地址:https://www.linuxidc.com/Linux/2019-05/158461.htm

你可能感兴趣的:(git)