开发环境
Ubuntu: 16.10
git: 2.9.3
将 github pages
项目 clone 到本地
$ git clone https://github.com/itaken/itaken.github.io.git
进入你本地的github pages目录
$ jekyll new .
如果报错, 提示文件夹不为空:
Conflict: /path/to/itaken.github.io exists and is not empty.
可以使用--force
, 强制新建一个jekyll项目
$ jekyll new . --force
开启jekyll服务 ^1
$ jekyll serve
开始书写你的blog
提交到 github
$ git add .
$ git commit -m "提交信息"
$ git push origin master