Skip to content
This repository has been archived by the owner on Jul 3, 2019. It is now read-only.

Publish gh pages

yurydelendik edited this page May 30, 2012 · 6 revisions

To publish/update gh-pages files:

$ git checkout gh-pages // go to the gh-pages branch
$ git checkout master -- src/ examples/ inspector/ // add/update some files with changes from master branch
$ git commit -m "Update shumway files from master"
$ git push origin gh-pages // push the gh-pages branch changes to GitHub Pages

(per http://oli.jp/2011/github-pages-workflow/ and https://gist.github.com/2831211)