Github Pages建独立博客
Github提供Github Pages服务,不仅可以方便的为项目建立介绍站点,也可以用来建立个人博客。大概需要以下几步。
-
在Github创建资料库
- 本地克隆资料库
git clone https://github.com/username/username.github.io
-
创建个人网站 直接使用html建设个人网站,也可以使用jekyll创建,jekyll参考本博前一篇 Welcome to Jekyll!。
- 提交到Github
git add --all git commit -m "Initial commit" git push -u origin master
- 通过浏览器访问:username.github.io。