在github gist上添加图片
前言
github不说了吧,谈谈gist,引用wiki一段话(注意红色字体):
GitHub also operates other services: a pastebin-style site called Gist[8] that provides wikis for individual repositories and web pages that can be edited through a Git repository
有时就需要给gist上传一些图片,在看看github gist上提供的:
貌似就没打算让我们上传图片嘛!像我们这种追求完美的程序猿,怎么也无法逃避那颗骚动的心!咱就要图文并茂,怎么办?·「若有更好办法,欢迎指点」
三步箴言:
第一步:创建gist, 记住ID
github上创建自己的gist,例如我创建的:https://gist.github.com/walkingnine/6199161, ID即为 6199161
第二步:使用ssh方式:clone gist
git clone git@github.com:ID.git
例如我的:
git clone git@github.com:6199161.git
如果你和我开始一样,不幸使用了https, 而且官网也提供了,
看到这个乐坏了吧,赶快使用
git clone https://gist.github.com/6199161.git
庆幸的是你成功的clone下来了,不幸的是使用
git push origin master
会出现:
Username for 'https://gist.github.com': walkingnine@gmail.com
Password for 'https://walkingnine@gmail.com@gist.github.com':
error: RPC failed; result=55, HTTP code = 0
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
第三步:大功告成
这时你可以在gist项目中添加自己的图片或者文件等,然后使用git add/commit命令,最后:
git push origin master # master is the branch, you may use your own branch.
刷刷网页,再看看,肿么样,图片就华丽丽的出现在你那迷人的双眼里。
来源:oschina
链接:https://my.oschina.net/u/874453/blog/152008