目录

Github和 gitee之raw使用

警告
本文最后更新于 2022-01-26,文中内容可能已过时。

github Raw 文件

例如,GitHub 文件原链接:

1
https://github.com/ZhaoUncle/image/blob/main/blog/08a268a7536468e8263fda199e84ebed.jpg

可通过以下几种 URL 查看 raw 文件:

1
2
3
4
5
6
https://raw.githubusercontent.com/ZhaoUncle/image/main/blog/08a268a7536468e8263fda199e84ebed.jpg

https://github.com/ZhaoUncle/image/raw/main/blog/08a268a7536468e8263fda199e84ebed.jpg

https://github.com/ZhaoUncle/image/blob/main/blog/08a268a7536468e8263fda199e84ebed.jpg?raw=true

RawGit

When you request certain types of files (like JavaScript, CSS, or HTML) from raw.githubusercontent.com or gist.githubusercontent.com, GitHub serves them with a Content-Type header set to text/plain. As a result, most modern browsers won’t actually interpret these files as JavaScript, CSS, or HTML and will instead just display them as text.

RawGit 作为一个缓存代理,提供的功能是缓存 GitHub 中 raw 文件并添加上正确的 Content-Type header,从而使文件能被浏览器正确渲染。

RawGit 对未开通 GitHub Pages 的项目中的任意 HTML/CSS/JS 文件以及 Gist 代码的渲染展示提供了方便。

使用方法:https://rawgit.com/https://raw.githack.com/

gitee raw 文件

gitee 原文件:https://gitee.com/qingfeng689/image/blob/main/blog/08a268a7536468e8263fda199e84ebed.jpg

可通过以下几种 URL 查看 raw 文件:

1
https://gitee.com/qingfeng689/image/raw/main/blog/08a268a7536468e8263fda199e84ebed.jpg

参考文章

https://segmentfault.com/a/1190000006669149