Last active
August 29, 2015 14:08
-
-
Save sillygwailo/7a1868a5744f237edcce to your computer and use it in GitHub Desktop.
Pretty Git Logs
This file contains 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
# Show current config in case you want to revert. | |
git config --get log.abbrevCommit | |
git config --get log.decorate | |
git config --get format.pretty | |
# Show abbreviated commit hashes. | |
git config --global log.abbrevCommit true | |
# Full decoration. | |
git config --global log.decorate full | |
# Format the display to show a yellow commit message, multicolored tags/branches, blue time ago, red committer (new line), white commit message. | |
git config --global format.pretty format:"%C(yellow)%h%Creset %C(auto)%d%Creset %Cblue%ar%Creset %Cred%an%Creset %n%w(72,1,2)%s" # http://git.gd/a-better-git-log/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment