Skip to content

Instantly share code, notes, and snippets.

@seansummers
Forked from skratchdot/gh-pages.sh
Created April 7, 2016 19:24
Show Gist options
  • Save seansummers/b276c9607a390b5bab141f3587cfab7f to your computer and use it in GitHub Desktop.
Save seansummers/b276c9607a390b5bab141f3587cfab7f to your computer and use it in GitHub Desktop.
Initialize gh-pages branch
# create gh-pages branch
git checkout --orphan gh-pages
git rm -rf .
touch README.md
git add README.md
git commit -m 'initial gh-pages commit'
git push origin gh-pages
# add gh-pages as submodule
git checkout master
git submodule add -b gh-pages [email protected]:skratchdot/MYPROJECT.git _site
git commit -m "added gh-pages as submodule"
git push origin master
git submodule init
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment