Skip to content

Instantly share code, notes, and snippets.

@AaronNBrock
Last active October 10, 2019 15:34
Show Gist options
  • Save AaronNBrock/8509485b2dd246ce86e7f94c6816a208 to your computer and use it in GitHub Desktop.
Save AaronNBrock/8509485b2dd246ce86e7f94c6816a208 to your computer and use it in GitHub Desktop.
# Edit as file:
# git config --global --edit
[log]
decorate = true
abbrevCommit = true
[format]
pretty = oneline
[pager]
log = false
[alias]
co = checkout
# Or, as commands:
git config --global format.pretty oneline
git config --global log.decorate true
git config --global log.abbrevCommit true
git config --global pager.log false
git config --global alias.co checkout
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment