Skip to content

Instantly share code, notes, and snippets.

@shrmpy
shrmpy / git-ghpages.sh
Created February 5, 2017 09:38
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