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
ofcourse adjust the path above to the one you have.git config --global alias.quick-stats '! c:/cli-tools/git-quick-stats
git quick-stats
That's all! play with the options and generate the required stats.
- Ayush 🙂