Reputation: 3940
I understand the syntax of git log
. I'm trying to compile a list of all commits on the repository essentially with the sole purpose of showing the amount of work I must have put into the final code (sounds silly, I know, but I have a non-technical audience that already views version control as miraculous); eventually I plan to format this into a pretty LaTeX list. How can I do this?
Upvotes: 2
Views: 72
Reputation: 1328282
The current best way yo showcase your contribution is by using IonicaBizau/git-stats:
examples:
git-stats # Displays your commit calendar
git-stats -v
git-stats -h
git-stats --light # Light mode
git-stats -s '1 January 2012' # All the commits from 1 January 2012, to now
git-stats -s '1 January 2012' -u '31 December 2012' # All the commits from 2012
Upvotes: 5