How to calculate the percentage of contribution from each contributor to words the Code in the Git or Gerrit?
You can do this by looping through the users and using the --shortstat option from : To get all commit email addresses from everyone who commited run the following command: git log --pretty="%ce%n" | sort | uniq This will print out all email addresses, sort them, and make a unique list from this.
https://stackoverflow.com/questions/54285539/how-to-calculate-the-percentage-of-contribution-from-each-contributor-to-words-t