What did I work on yesterday?

07 March, 2017

So for the last few months I’ve been having a problem with not remembering what I’ve worked on the day before. I’m putting it down to bad memory however when attending my daily stand up meetings this is becoming a problem.

I tried a few things to jog my memory

  1. At the end of the day note down what I’ve been working on.
  2. Use git to look through git log and pick out my commits that I’ve pushed to the branch.

I had a simple idea to dive into git log and see if I could only pull my commits from 1 day ago:

scrum = log --since='1 day ago' --author='Joe Richardson' --oneline

Loading...