Skip to content

Instantly share code, notes, and snippets.

@fegemo
Created February 21, 2017 23:26
Show Gist options
  • Save fegemo/fd47d88797a68df51041893385999537 to your computer and use it in GitHub Desktop.
Save fegemo/fd47d88797a68df51041893385999537 to your computer and use it in GitHub Desktop.
Personal git setup
git config --global alias.co checkout
git config --global alias.cob "checkout -b"
git config --global alias.st status
git config --global alias.coolio "checkout -- *"
git config --global --add alias.lol "log --graph --decorate --pretty=oneline --abbrev-commit --all"
git config --global push.default simple
git config --global user.email "fegemo@gmail.com"
git config --global user.name "Flavio Coutinho"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment