- Ruby をインストールする
gem install bundler --no-ri --no-rdoc
bundle install --path vendor/bundle
をこのリポジトリのディレクトリ内で実行bundle exec jekyll serve --watch
- ウェブブラウザで http://localhost:4000 にアクセス
- 編集作業を行う -> ブラウザを更新して確認 (これを繰り返し)
index.markdown
の YAML Front Matter に関する情報
Jekyll をローカルで使い GitHub Page で表示されるものを確認する方法
- Fork it (フォークする)
- Create your feature branch (作りたい機能のためのブランチを作成) (
git checkout -b new-awesome-feature
) - Commit your changes (変更をコミット) (
git commit -am 'add a new awesome feature!'
) - Push to the branch (リモートブランチにプッシュ) (
git push origin new-awesome-feature
) - Create a new Pull Request (新規プルリクエストを作成)