GitHub访问及git工具克隆慢问题解决

一、查询合适的DNS服务器

1、站长工具DNS查询服务器

github.com

github.global.ssl.fastly.net

 

2、选择TTL值最小的记录,记录下对应服务器IP地址

例如

github.com  192.30.255.112

github.global.ssl.fastly.net  151.101.189.194

二、更改hosts文件的DNS配置

windows的hosts位置:

C:\Windows\System32\drivers\etc\hosts

 

在文件最后添加两条信息

192.30.255.112 github.com

151.101.189.194 github.global.ssl.fastly.net

 

三、清除DNS缓存

输入命令行:

Windows:

输入ipconfig /flushdns

Linux:

sudo /etc/init.d/networking restart 

 

 

你可能感兴趣的:(工具,网络)