As an admin, I would like to find out how many commits are done per branch, per user, total commits by a user in last 3 months, total commits in last 3 months. etc.. How can I do this ?
I could see this on Github like this: List commit by user
I want to see the same thing for GitLab also.
I am running Gitlab CE version: 7.2.1
I thought of running git log --author='userid'
but this will take forever to run for so many user / so many branches. Same would apply for running Gitstats because I have to sync all the branches locally first.
Any pointers please?