GitHub | Mac OS GitHub 图片打不开(2020.01.06)
程序员文章站
2022-07-14 08:40:10
...
最近打算维护一个自己的东西,突然发现上传的图片时不时的打不开,很是无语,看到一老哥的博文,尝试一波:
问题原因截图如下:
解决方案如下:
Step 1:在加载失败的图片选择检查,找到 GitHub 二级域名
这里拿到 GitHub 二级域名如下:
- raw.githubusercontent.com
Step 2:在 IP 网站查询此 IP 段
如下所示,GitHub 在 2020 年 1 月 4 日调整了 IP 段:
Step 3:修改本地 hosts 文件
在 iTerm 2,键入如下命令:
- sudo vi /etc/hosts
随后,点击 i 进入 Insert 模式,将如下内容复制即可:
# GitHub Start
192.30.253.112 github.com
192.30.253.119 gist.github.com
199.232.28.133 assets-cdn.github.com
199.232.28.133 raw.githubusercontent.com
199.232.28.133 gist.githubusercontent.com
199.232.28.133 cloud.githubusercontent.com
199.232.28.133 camo.githubusercontent.com
199.232.28.133 avatars0.githubusercontent.com
199.232.28.133 avatars1.githubusercontent.com
199.232.28.133 avatars2.githubusercontent.com
199.232.28.133 avatars3.githubusercontent.com
199.232.28.133 avatars4.githubusercontent.com
199.232.28.133 avatars5.githubusercontent.com
199.232.28.133 avatars6.githubusercontent.com
199.232.28.133 avatars7.githubusercontent.com
199.232.28.133 avatars8.githubusercontent.com
# GitHub End
随后,点击 esc 键,输入 wq 保存退出即可。
Step 4:核验结果
搞定~