Simon Kuang
Simon Kuang

Reputation: 3940

List full commit history

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

Answers (1)

VonC
VonC

Reputation: 1328282

The current best way yo showcase your contribution is by using IonicaBizau/git-stats:

https://camo.githubusercontent.com/be233aefaee218732226d289a1dc1fd13764f342/687474703a2f2f692e696d6775722e636f6d2f4c664c4a4161452e706e67

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

Related Questions