git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Method for Calculating Statistics of Developer Contribution to a Specified Branch.
@ 2023-10-16 14:10 Hongyi Zhao
  2023-10-16 21:25 ` brian m. carlson
  0 siblings, 1 reply; 7+ messages in thread
From: Hongyi Zhao @ 2023-10-16 14:10 UTC (permalink / raw)
  To: Git List

Dear Git Mailing List,

I am a developer currently working on a project and I wanted to
establish statistics for each team member's contribution to a specific
branch.

Say, for a user "JianboLin", I am currently using the following method:

$ git clone https://github.com/OrderN/CONQUEST-release.git
$ cd CONQUEST-release
$ git log --author="JianboLin" --stat --summary origin/f-mlff | awk
'NF ==4 && $2 =="|" && $3 ~/[0-9]+/ && $4 ~/[+-]+|[+]+|[-]+/ {s+=$3}
END {print s}'

Using the above command, I am able to calculate the number of lines
contributed by a specific author on a specific branch, which allows me
to quantify the contribution to a branch by each team member.

However, I would like to know if a more efficient or accurate method
exists to carry out this task. Are there any other parameters,
commands, or aspects I need to consider to get a more comprehensive
measure of contribution?

I greatly appreciate your expertise and look forward to your valuable input.

Best Regards,

Zhao
-- 
Assoc. Prof. Hongsheng Zhao <hongyi.zhao@gmail.com>
Theory and Simulation of Materials
Hebei Vocational University of Technology and Engineering
No. 473, Quannan West Street, Xindu District, Xingtai, Hebei province

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-10-31 19:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-16 14:10 Method for Calculating Statistics of Developer Contribution to a Specified Branch Hongyi Zhao
2023-10-16 21:25 ` brian m. carlson
2023-10-17 11:37   ` Hongyi Zhao
2023-10-30 21:49     ` Taylor Blau
2023-10-31  5:09       ` Hongyi Zhao
2023-10-31  6:25         ` Junio C Hamano
2023-10-31 19:05           ` Taylor Blau

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).