On 02/21/2014 10:41 AM, Loic Dachary wrote:
Hi Ceph,
Here is a sorted list of authors and organizations who contributed to v0.77, by
number of commits or reviews back to v0.76. The affiliation of authors to
organizations can be updated by submitting a patch to
https://github.com/ceph/ceph/blob/master/.organizationmap
All commits are reviewed but the number of reviews is a fraction of the number
of commits. More often than not, the reviewer(s) is only mentioned in the
message of the merge although it means that all associated commits have been
reviewed.
If you are curious about how it is done, the details are at the end of this
mail.
Thanks Loic! Great to see so many people contributing to Ceph! I never
figured it were so many people from different organizations.
Very valuable information!
Wido
Commits by authors
1 75 Yehuda Sadeh <[email protected]>
2 70 Sage Weil <[email protected]>
3 66 Samuel Just <[email protected]>
4 42 Greg Farnum <[email protected]>
5 36 Loic Dachary <[email protected]>
6 24 John Wilkins <[email protected]>
7 23 Li Wang <[email protected]>
8 13 Josh Durgin <[email protected]>
9 9 Tamil Muthamizhan <[email protected]>
10 8 Noah Watkins <[email protected]>
11 8 Ilya Dryomov <[email protected]>
12 7 David Zafman <[email protected]>
13 4 Ken Dreyer <[email protected]>
14 4 Haomai Wang <[email protected]>
15 3 Wido den Hollander <[email protected]>
16 3 John Spray <[email protected]>
17 2 Ray Lv <[email protected]>
18 2 João Eduardo Luís <[email protected]>
19 1 Moritz Möller <[email protected]>
20 1 Kai Zhang <[email protected]>
21 1 Eric Mourgaya <[email protected]>
22 1 Dmitry Smirnov <[email protected]>
23 1 Derek Yarnell <[email protected]>
24 1 Dan Mick <[email protected]>
25 1 Concubidated <[email protected]>
26 1 Christian Marie <[email protected]>
27 1 Alexandre Marangone <[email protected]>
Commits by organizations
1 334 Inktank <[email protected]>
2 36 Cloudwatt <[email protected]>
3 23 Ubuntu Kylin <[email protected]>
4 4 UnitedStack <[email protected]>
5 3 Wido 42on <[email protected]>
6 2 Yahoo! <[email protected]>
7 1 University of Mississippi <[email protected]>
8 1 Debian GNU/Linux <[email protected]>
9 1 Credit Mutuel Arkea <[email protected]>
10 1 CISCO <[email protected]>
11 1 Bigpoint.com <[email protected]>
12 1 Anchor Hosting <[email protected]>
Reviews by authors (one review spans multiple commits)
1 31 Sage Weil <[email protected]>
2 13 Josh Durgin <[email protected]>
3 9 Greg Farnum <[email protected]>
4 6 Samuel Just <[email protected]>
5 2 Loic Dachary <[email protected]>
6 2 Christophe Courtaut <[email protected]>
7 1 Yehuda Sadeh <[email protected]>
8 1 Yan, Zheng <[email protected]>
9 1 Thomas Bechtold <[email protected]>
10 1 Rutger ter Borg <[email protected]>
11 1 Laurent Barbe <[email protected]>
12 1 Kai Zhang <[email protected]>
13 1 Jonathan Dieter <[email protected]>
14 1 João Eduardo Luís <[email protected]>
15 1 Huang Jun <[email protected]>
16 1 Derek Yarnell <[email protected]>
17 1 David Zafman <[email protected]>
18 1 Dan Chai <[email protected]>
19 1 Christian Marie <[email protected]>
20 1 Alan Somers <[email protected]>
Reviews by organizations (one review spans multiple commits)
1 62 Inktank <[email protected]>
2 4 Cloudwatt <[email protected]>
3 2 Unaffiliated <[email protected]>
4 1 University of Mississippi <[email protected]>
5 1 Spectra Logic <[email protected]>
6 1 Lebanon Evangelical School <[email protected]>
7 1 Intel <[email protected]>
8 1 Deutsche Telekom <[email protected]>
9 1 CISCO <[email protected]>
10 1 CCM Benchmark <[email protected]>
11 1 ArtiBit <[email protected]>
12 1 Anchor Hosting <[email protected]>
The script used to generate this output is (copy paste at the root of a git
clone https://github.com/ceph/ceph.git):
cat > credits.sh <<'EOF'
range=$1
echo "Commits by authors"
git log --pretty='%aN <%aE>' $range | sort | uniq -c | sort -rn | nl
echo "Commits by organizations"
git log --pretty='%aN <%aE>' $range | git -c mailmap.file=.organizationmap
check-mailmap --stdin | sort | uniq -c | sort -rn | nl
echo "Reviews by authors (one review spans multiple commits)"
git log --pretty=%b $range | perl -n -e 'print "$_\n"
if(s/^\s*Reviewed-by:\s*(.*<.*>)\s*$/\1/)' | git check-mailmap --stdin | sort | uniq -c |
sort -rn | nl
echo "Reviews by organizations (one review spans multiple commits)"
git log --pretty=%b $range | perl -n -e 'print "$_\n"
if(s/^\s*Reviewed-by:\s*(.*<.*>)\s*$/\1/)' | git check-mailmap --stdin | git -c
mailmap.file=.organizationmap check-mailmap --stdin | sort | uniq -c | sort -rn | nl
EOF
bash credits.sh tags/v0.76...tags/v0.77
Authors names are normalized with .mailmap and authors affiliations to a given
organization comes from .organizationmap, both of which can be found and
patched at the root of the ceph source tree.
More sophisticated reports can be generated and visualized by tools such as
http://bitergia.com/ or http://stackalytics.com/. Cheers
--
Wido den Hollander
42on B.V.
Phone: +31 (0)20 700 9902
Skype: contact42on
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html