解决GitHub网页githubusercontent地址无法访问问题

去年年底开始GitHub里面的用户头像无法显示,页面也加载缓慢,这下快乐的日子可能一去不复返了,我们需要把相关域名加加速了。


插播广告,GitMaster是针对GitHub,Gitlab,Gitee的浏览器扩展,它能按照树形展示仓库的结构,同时支持文件下载,通知系统功能。

GitMaster 你的代码树浏览器助手

GitMaster是一款Chrome扩展,主要功能是在网页端查看git项目的代码树结构。 (更多…)

阅读865

评论 0

GitHub里面图片都在githubusercontent.com域名上,我们只需要在hosts里面加上相关地址即可。如果你有代理,把域名加入到许可名单也可以的。

这里我们介绍hosts方式是如何使用的,把以下内容添加到hosts文件中。

1. hosts内容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 2020年12月30日更新

# GitHub Start
52.74.223.119 github.com
52.74.223.119 gist.github.com
54.169.195.247 api.github.com
185.199.111.153 assets-cdn.github.com
199.232.96.133 raw.githubusercontent.com
199.232.96.133 gist.githubusercontent.com
199.232.96.133 cloud.githubusercontent.com
199.232.96.133 camo.githubusercontent.com
199.232.96.133 avatars0.githubusercontent.com
199.232.96.133 avatars1.githubusercontent.com
199.232.96.133 avatars2.githubusercontent.com
199.232.96.133 avatars3.githubusercontent.com
199.232.96.133 avatars4.githubusercontent.com
199.232.96.133 avatars5.githubusercontent.com
199.232.96.133 avatars6.githubusercontent.com
199.232.96.133 avatars7.githubusercontent.com
199.232.96.133 avatars8.githubusercontent.com
199.232.96.133 user-images.githubusercontent.com
185.199.109.154 github.githubassets.com
# GitHub End

注意 : 这里域名对应的ip是通过dns查询工具查询得到的,你应当选择的是延时相对较小且比较稳定的ip。

如果发现不起作用,或者速度不理想,参考查找域名IP

2. 如何修改

2.1 Windows

hosts文件位置:C:/windows/system32/drivers/etc/hosts

将前文内容追加到hosts,然后刷新DNS缓存:

1
ipconfig /flushdns复制

2.2 Mac

hosts文件位置:/etc/hosts

Mac系统下修改需要按照如下方式:

1:首先,打开(访达)Finder。
2:使用组合键Shift+Command+G打开"前往文件夹",在输入框输入/etc/hosts。img
3:然后就会跳转到hosts文件位置。

复制hosts文件到桌面上,鼠标右键点击/右击它,选择「打开方式」—「文本编辑」,打开这个hosts文件,然后将你要修改的内容直接在里面修改就好了。

然后把你修改好的hosts文件在复制回hosts文件的所在(文件夹下)路径:/etc/hosts 之下替换原始的hosts文件就好了。

注意:如果弹出密码输入框,你需要输入你当前电脑登录账号的密码。

最后刷新下缓存:

1
sudo killall -HUP mDNSResponder复制

3. 查找域名IP

  • DNS查询-站长工具
  • IP或域名查询-查询网
  • IPAddress.com

注:2020年12月30日我实际使用IPAddress才可以生效,前面两个查询站点获取的IP均无法使用,各位可以都尝试下直到生效。

前面hosts里面域名里分为两类:

  • *.githubusercontent.com
  • *.github.com

*.githubusercontent.com可以使用同一个IP,不需要每个单独查询。*.github.com未经测试,目前看是需要单独查询对应的IP