Skip to content

Instantly share code, notes, and snippets.

@ArneGockeln
Created January 20, 2022 12:44
Show Gist options
  • Save ArneGockeln/504624275142b78082487867f73d047d to your computer and use it in GitHub Desktop.
Save ArneGockeln/504624275142b78082487867f73d047d to your computer and use it in GitHub Desktop.
add git alias for pretty log printing
# add an alias for the command
$ git config --global alias.logpretty 'log --pretty=format:"%ad %h: %s" --date=short'
# retrieve log history
$ git logpretty
2022-01-20 4d7ce7de: fix: perf bmrk chart dark mode annotation hover color
2022-01-20 15f6b240: fix: fund style name in perf bmrk list+chart
2022-01-20 5643fdf7: fix: change font weight to 300
2022-01-19 12444d96: fix: cleanup debug output
[...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment