Skip to content

Instantly share code, notes, and snippets.

@libertarianinstitute
Forked from cobyism/gh-pages-deploy.md
Created May 31, 2016 23:11
Show Gist options
  • Select an option

  • Save libertarianinstitute/2fc251f0ffcba08cdd64d79b3cd34d9f to your computer and use it in GitHub Desktop.

Select an option

Save libertarianinstitute/2fc251f0ffcba08cdd64d79b3cd34d9f to your computer and use it in GitHub Desktop.
Deploy to `gh-pages` from a `dist` folder on the master branch. Useful for use with [yeoman](http://yeoman.io).

Deploying a dist folder to GitHub Pages

Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman.

Step 1

Remove the dist directory from the project’s .gitignore file (it’s ignored by default by yeoman).

Step 2

Set up the subtree.

git add dist && git commit -m "Initial dist subtree commit"
git subtree push --prefix dist origin gh-pages

Step 3

Deploy dat subtree.

git subtree push --prefix dist origin gh-pages

Boom. If your folder isn’t called dist, then you’ll need to change that in each of the commands above.

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