Hosting Jekyll Blog On Github Pages
TAGS:
Hosting  Jekyll  Blog  Github  Pages 
How To Host Jekyll Blog On Github Pages.
First, You must create a new repository on you github account and provide its name as you username followed by .github.io i.e as user_name.github.io.
Second, Change directory to your blog and push you blog.
git init
git remote add origin https://github.com/user_name/user_name.github.io.git
git add --all
git commit -m "first github pages"
git push -u origin masterLast, Browse to your blog url: user_name.github.io
Now, Take a look to this tutorial video.