rrylee
8/27/2016 - 2:58 PM

github page deploy

github page deploy

#!/bin/bash
git stash save
git checkout -B gh-pages
git add -f build
git commit -am "Rebuild website"
git filter-branch -f --prune-empty --subdirectory-filter build
git push -f origin gh-pages
git checkout -
git stash pop