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\"
You can create alias to shorten this command
git config --global alias.today 'log --since=7am'
and then execute:
git today