I have a branch called development. Now I want to know how many commits are happened per day (i.e) each day.
development
I want Toal number of commits (i.e) count o
I've tried with:
git log | grep Date | awk '{print " : "$4" "$3" "$6}' | uniq -c
And it works. You'll get something like:
5 : 3 Mar 2016 4 : 2 Mar 2016 8 : 1 Mar 2016 [...]
I found the command here.