Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Some correction
Github pages are something as simple as a Github service for serving up static HTML from a Github respository. Github pages can be tied to a project by creating a special branch called gh-pages, or directly to your account by creating a respository called yourname.github.com.
Prcedure
Procedure to create Github pages :

1) open the project.(https://github.com/username/projectname)
2) Click on Admin
3) Click on 'Automatic page Generator'
4) Fill the form and 'Continue to layouts'
5) Select a layout , click 'PUBLISH'
6) Wait for your Page to be created. ( it will take up to 10 mins)
57) Github Page will be availabe at http://username.github.com/projectname.
9
8) from git terminal ,

cd path/ to /the /project
git checkout gh-pages
git merge master
git push origin gh-pages
git checkout master
10
9) Now check the page, It is ready.

...