git checkout gh-pages git rebase master
jspm bundle index.js --inject --minify
git add config.js build.* git commit --amend --no-edit git push github gh-pages --force
git fetch github git checkout gh-pages git merge --ff github/gh-pages
git checkout master git cherry-pick ... # for the ENTIRE range of gh-pages commits
git checkout gh-pages git rebase master
git diff master gh-pages !(build*|config.js)
git checkout github/gh-pages git reset --hard gh-pages