Jekyll Tips for myself
前提:
Jekyllについて、自身の作業メモを逐次記載していく。
githubioの編集方法について
clone->編集->公開までの一連の流れ
- 初回のみgemファイル記載の各種ライブラリをインストール
$ git clone git@github.com:meruneru/meruneru.github.io.git
$ cd meruneru.github.io
$ bundle install-
_post以下にMDファイルを作成する -
localのhtmlサーバを起動してページを確認する
$ bundle exec jekyll serve --force_polling- githubへPost
$ git add yyyy-mm-dd-xxxx.md
$ git commit -m "foobarr"
$ git push origin master - Deplyの確認 このBlogを確認する
[参考サイト]