It's interesting to get insights from our git repository like contributions stats, commits per author, commits per month/week/date, code reviewers.
There is an interesting tool called git-quick-stats to help generating these insights.
It's straightforward to install on linux, mac by following these steps. However, on windows it's bit tricky, hence follow these steps-
[alias]
  quick-stats = ! c:/cli-tools/git-quick-stats
git config --global alias.quick-stats '! c:/cli-tools/git-quick-statsgit quick-statsThat's all! play with the options and generate the required stats.

- Ayush 🙂