I\'ve already looked at the relevant docs from git-scm.com and gitref.org, but I can\'t seem to figure this out.
Let\'s say I want to get all commits for Tuesday, N
I made a git alias for that specific purpose:
commitsAtDate = "!f() { git log --pretty='format:%C(yellow)%h %G? %ad%Cred%d %Creset%s%C(cyan) [%cn]' --decorate --after=\"$1 0:00\" --before=\"$1 23:59\" --author \"`git config user.name`\"; }; f"
Usage:
git commitsAtDate 2017-08-18