前提:

Jekyllについて、自身の作業メモを逐次記載していく。

githubioの編集方法について

clone->編集->公開までの一連の流れ

  1. 初回のみgemファイル記載の各種ライブラリをインストール
$ git clone git@github.com:meruneru/meruneru.github.io.git 
$ cd meruneru.github.io
$ bundle install
  1. _post以下にMDファイルを作成する

  2. localのhtmlサーバを起動してページを確認する

$ bundle exec jekyll serve --force_polling
  1. githubへPost
$ git add yyyy-mm-dd-xxxx.md
$ git commit -m "foobarr"
$ git push origin master 
  1. Deplyの確認 このBlogを確認する

[参考サイト]