Git Log: What did I do yesterday, exactly?

1 · Ariejan de Vroom · Aug. 24, 2011, midnight
Sometimes you have to take your git repository’s log to see what you did the day before (ideal in preparation for the daily stand-up). What I want is a clean overview of each commit messages, their author and the time. The output result should be easily grep-able so I can filter stuff I don’t need out. ~ To do this, I use the following custom git log command: git log --pretty=format:'%Cred%h%Creset - %C(yellow)%ae%Creset - %Cgreen%cd%Creset - %s%Creset' --abbrev-commit --date=iso The result:...