Skip to content

Instantly share code, notes, and snippets.

@shrmpy
Created February 5, 2017 09:38
Show Gist options
  • Save shrmpy/9d0d5e13a116df7ec1b6930a0d7ed02e to your computer and use it in GitHub Desktop.
Save shrmpy/9d0d5e13a116df7ec1b6930a0d7ed02e to your computer and use it in GitHub Desktop.
Typical Git workflow for Github pages.
#!/bin/sh
# initial email config
git config --global --edit
# per commit modify name
git commit --amend --author="shrmpy <>"
# typical github pages steps
git add --all
git commit -m "explain change"
git push -f origin gh-pages
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment