Skip to content

Instantly share code, notes, and snippets.

@sillygwailo
Last active August 29, 2015 14:08
Show Gist options
  • Save sillygwailo/7a1868a5744f237edcce to your computer and use it in GitHub Desktop.
Save sillygwailo/7a1868a5744f237edcce to your computer and use it in GitHub Desktop.
Pretty Git Logs
# 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