This is my first update outlining the steps to install jekyll. Adding a new post is as simple as creating a new markdown file in the _posts\ folder.

stuberadmin@DESKTOP-3EN365M MINGW64 ~
$ cd Documents/
stuberadmin@DESKTOP-3EN365M MINGW64 ~/Documents
$ cd GitHub/
stuberadmin@DESKTOP-3EN365M MINGW64 ~/Documents/GitHub
$ gem install bundler jekyll
stuberadmin@DESKTOP-3EN365M MINGW64 ~/Documents/GitHub
$ jekyll new nape_tca_nn_blog
stuberadmin@DESKTOP-3EN365M MINGW64 ~/Documents/GitHub/nape_tca_nn_blog
$ bundle exec jekyll serve
stuberadmin@DESKTOP-3EN365M MINGW64 ~/Documents/GitHub/nape_tca_nn_blog
$ git init
stuberadmin@DESKTOP-3EN365M MINGW64 ~/Documents/GitHub/nape_tca_nn_blog (master)
$ git checkout -b gh-pages
stuberadmin@DESKTOP-3EN365M MINGW64 ~/Documents/GitHub/nape_tca_nn_blog (gh-pages)
$ git add .
stuberadmin@DESKTOP-3EN365M MINGW64 ~/Documents/GitHub/nape_tca_nn_blog (gh-pages)
$ git commit -m "initializing commit"
stuberadmin@DESKTOP-3EN365M MINGW64 ~/Documents/GitHub/nape_tca_nn_blog (gh-pages)
$ git remote add origin https://github.com/zhounapeuw/nape_tca_nn_blog.git
stuberadmin@DESKTOP-3EN365M MINGW64 ~/Documents/GitHub/nape_tca_nn_blog (gh-pages)
$ git push origin gh-pages
stuberadmin@DESKTOP-3EN365M MINGW64 ~/Documents/GitHub/nape_tca_nn (master)
$ bundle exec jekyll serve

If you get this problem: error `/’ not found, you will need to run the command below instead. See this post for details: https://github.com/jekyll/jekyll/issues/1432

stuberadmin@DESKTOP-3EN365M MINGW64 ~/Documents/GitHub/nape_tca_nn_blog (gh-pages)
$ jekyll serve --baseurl ""

github_pages_config

Check out the Jekyll docs for more info on how to get the most out of Jekyll. File all bugs/feature requests at Jekyll’s GitHub repo. If you have questions, you can ask them on Jekyll Talk.