I want to be able to see all of the commits I made today using git log. I came up with git log --after=\"yesterday\" However, that seems a litt
git log
git log --after=\"yesterday\"
Maybe the best is to use
git log --since="6am"
You can adjust the time to your convenience ;)