2. Uploading completed web page to GitHub

07 Nov 2016

We will upload this files to Github to freely host in there. GitHub gives chance to host all kind of public files under a page such as mehmetakifakkus.github.io, means username.github.io.

This is called Github Pages which is a free service by GitHub. GitHub has Jekyll system in it and serves your files with this manner. What we will do is a simple process:

1
2
3
4
  git init
  git add *
  git remote add origin https://github.com/username/username.github.io.git
  git push -u origin master