#git tip of the day. Massive time saver.
Add this alias to your config:
`lg = log --format='%C(red)%ad %C(green)%h %C(blue)(%an): %Creset%s%C(Yellow)%d' --date=format:'%d-%m-%y'`
It’s basically `git log —oneline` + date and author and pretty colours.
Now you can combine it with #fzf to filter the commit history:
`$ git lg | fzf`
The only issue is that the results won’t be sorted chronologically, but it’s so much faster than stuff like #gitlens