Last active
October 10, 2019 15:34
-
-
Save AutomateAaron/8509485b2dd246ce86e7f94c6816a208 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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