RPeraltaJr
6/6/2017 - 8:07 PM

Setting Up Github Pages

Github Pages

  1. Create a new repository named [username.github.io], where username is your username (or organization name) on Github

  2. Git Client:

    • Terminal:

      a. Clone the repository git clone https://github.com/username/username.github.io

      b. Enter the project folder and add an index.html file cd username.github.io

      c. Push it Add, commit, and push your changes git add . git commit -m "Initial commit" git push -u origin master

  3. Done!