Keep gh-pages in sync with master
GitHub Pages is designed to host your personal, organization, or project pages directly from a GitHub repository. Add changes to your master branch echo “My Page” > index.html git add . git commit -m ‘Lorem Ipsum’ git push origin master Add changes to gh-pages git checkout gh-pages // go to . . . Read more