Counting on Git
Commits by Author per Day
## Simple
git log --author="<AUTHOR_NAME>" | grep Date | awk '{print ": "$4" "$3" "$6}' | uniq -c
## With Date Range
git log --author="<AUTHOR_NAME>" --before="<BEFORE_DATE>" --after="<AFTER_DATE>" | grep Date | awk '{print ": "$4" "$3" "$6}' | uniq -c
## Example
git log --author="my name" --before="2021-06-30" --after="2020-11-10" | grep Date | awk '{print ": "$4" "$3" "$6}' | uniq -c