打开git或者vue官网太慢

2024-07-29 18:34:23 浏览数 (1)

场景 最近弄git和vue发现进他们的官网实在是太慢了,想自己能不能改善一下,后来自己指定了一下ip跳过了dns解析,现在把解决过程写一下。

解决方案

先进入

代码语言:javascript复制
C:WindowsSystem32driversetc
修改HOSTS 
修改之前先备份下HOSTS

git下过慢 在HOSTS中加入如下参数

代码语言:javascript复制
185.31.17.184  github.global.ssl.fastly.net
192.30.253.112 github.com 
192.30.253.119 gist.github.com 
151.101.100.133 assets-cdn.github.com 
151.101.100.133 raw.githubusercontent.com 
151.101.100.133 gist.githubusercontent.com 
151.101.100.133 cloud.githubusercontent.com 
151.101.100.133 camo.githubusercontent.com 
151.101.100.133 avatars0.githubusercontent.com 
151.101.100.133 avatars1.githubusercontent.com 
151.101.100.133 avatars2.githubusercontent.com 
151.101.100.133 avatars3.githubusercontent.com 
151.101.100.133 avatars4.githubusercontent.com 
151.101.100.133 avatars5.githubusercontent.com 
151.101.100.133 avatars6.githubusercontent.com 
151.101.100.133 avatars7.githubusercontent.com 
151.101.100.133 avatars8.githubusercontent.com 

vue下过慢

代码语言:javascript复制
104.248.78.24 cn.vuejs.org
104.248.78.24 router.vuejs.org
104.248.78.24 vuex.vuejs.org

最后刷新DNS缓存

代码语言:javascript复制
cmd命令下
输入
ipconfig/flushdns 
回车

到此问题应该解决。

0 人点赞