Skip to content

Instantly share code, notes, and snippets.

@skratchdot
Last active December 1, 2022 16:26
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save skratchdot/1ef433c666066389201a to your computer and use it in GitHub Desktop.
Save skratchdot/1ef433c666066389201a 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 git@github.com:skratchdot/MYPROJECT.git _site
git commit -m "added gh-pages as submodule"
git push origin master
git submodule init
@apaoluzzi
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment