github上面的很多项目,README文档中的图片显示的路径在都在 https://raw.githubusercontent.com/wiki/ 下面,在浏览器中输入https://raw.githubusercontent.com,页面直接跳转至 https://github.com。在项目的代码标签页面下,使用“Upload files”按钮,可以直接上传图片,但图片的路径是在https://github.com下。图片跟代码一起,对于处女座的人来说,是万万不能的接受的。所以才出现了github的独立图床。那问题来了,怎么样才能把图片放到github的独立图床,也就是https://raw.githubusercontent.com路径下呢?
首先,在你需要添加图片的项目下,点击项目的wiki标签,切换到github的wiki页面
克隆wiki仓库,克隆完成后,出现了dockercraft.wiki目录
$ git clone https://github.com/docker/dockercraft.wiki.git
进入dockercraft.wiki目录,拷贝图片进去
$ cd dockercraft.wiki && cp /home/mac/flowchart.png .
添加图片到版本库并提交到github上
$ git add flowchart.png
$ git commit -a -m “add image flowchart.png”
$ git push
上传完的图片的路径是:
https://raw.githubusercontent.com/wiki/%5Busername%5D/%5Brepository%5D/%5Bfilename%5D
你可以把这个路径添加到github项目的说明文档中。
作者:meidisun
链接:https://www.jianshu.com/p/bd5c1b33d2c5
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。