有效解决github下载慢的问题

有时我们从github下载文件会非常慢,使用如下方法可以解决这个问题。

  1. 从 https://www.ipaddress.com/ 网站中获取github.com和github.global.ssl.fastly.net对应的ip,比如192.30.xx.xx和151.101.xx.xx
  2. 打开hosts文件(C:\Windows\System32\drivers\etc\hosts),在文件末尾添加如下内容
192.30.253.113 github.com
151.101.13.194 github.global.ssl.fastly.net

将其中的ip换成你刚刚获取的ip

3.执行ipconfig /flushdns命令,刷新 DNS 缓存

你可能感兴趣的:(Git)