v0.77 contributors credits

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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. 

Commits by authors
     1	     75 Yehuda Sadeh <yehuda@xxxxxxxxxxx>
     2	     70 Sage Weil <sage@xxxxxxxxxxx>
     3	     66 Samuel Just <sam.just@xxxxxxxxxxx>
     4	     42 Greg Farnum <greg@xxxxxxxxxxx>
     5	     36 Loic Dachary <loic@xxxxxxxxxxx>
     6	     24 John Wilkins <john.wilkins@xxxxxxxxxxx>
     7	     23 Li Wang <liwang@xxxxxxxxxxxxxxx>
     8	     13 Josh Durgin <josh.durgin@xxxxxxxxxxx>
     9	      9 Tamil Muthamizhan <tamil.muthamizhan@xxxxxxxxxxx>
    10	      8 Noah Watkins <noah.watkins@xxxxxxxxxxx>
    11	      8 Ilya Dryomov <ilya.dryomov@xxxxxxxxxxx>
    12	      7 David Zafman <david.zafman@xxxxxxxxxxx>
    13	      4 Ken Dreyer <ken.dreyer@xxxxxxxxxxx>
    14	      4 Haomai Wang <haomaiwang@xxxxxxxxx>
    15	      3 Wido den Hollander <wido@xxxxxxxx>
    16	      3 John Spray <john.spray@xxxxxxxxxxx>
    17	      2 Ray Lv <xiangyulv@xxxxxxxxx>
    18	      2 João Eduardo Luís <joao.luis@xxxxxxxxxxx>
    19	      1 Moritz Möller <mm@xxxxxx>
    20	      1 Kai Zhang <zakir.exe@xxxxxxxxx>
    21	      1 Eric Mourgaya <eric.mourgaya@xxxxxxxxx>
    22	      1 Dmitry Smirnov <onlyjob@xxxxxxxxxxxxxx>
    23	      1 Derek Yarnell <derek@xxxxxxxxxxxxxx>
    24	      1 Dan Mick <dan.mick@xxxxxxxxxxx>
    25	      1 Concubidated <tyler.brekke@xxxxxxxxxxx>
    26	      1 Christian Marie <pingu@xxxxxxxxxxxxx>
    27	      1 Alexandre Marangone <alexandre.marangone@xxxxxxxxxxx>
Commits by organizations
     1	    334 Inktank <contact@xxxxxxxxxxx>
     2	     36 Cloudwatt <libre.licensing@xxxxxxxxxxxxx>
     3	     23 Ubuntu Kylin <contact@xxxxxxxxxxxxxxx>
     4	      4 UnitedStack <contact@xxxxxxxxxxxxxxx>
     5	      3 Wido 42on <contact@xxxxxxxx>
     6	      2 Yahoo! <contact@xxxxxxxxxxxxx>
     7	      1 University of Mississippi <contact@xxxxxxx>
     8	      1 Debian GNU/Linux <contact@xxxxxxxxxx>
     9	      1 Credit Mutuel Arkea <contact@xxxxxxxxx>
    10	      1 CISCO <contact@xxxxxxxxx>
    11	      1 Bigpoint.com <contact@xxxxxxxxxxxx>
    12	      1 Anchor Hosting <contact@xxxxxxxxxxxxx>
Reviews by authors (one review spans multiple commits)
     1	     31 Sage Weil <sage@xxxxxxxxxxx>
     2	     13 Josh Durgin <josh.durgin@xxxxxxxxxxx>
     3	      9 Greg Farnum <greg@xxxxxxxxxxx>
     4	      6 Samuel Just <sam.just@xxxxxxxxxxx>
     5	      2 Loic Dachary <loic@xxxxxxxxxxx>
     6	      2 Christophe Courtaut <christophe.courtaut@xxxxxxxxx>
     7	      1 Yehuda Sadeh <yehuda@xxxxxxxxxxx>
     8	      1 Yan, Zheng <zheng.z.yan@xxxxxxxxx>
     9	      1 Thomas Bechtold <t.bechtold@xxxxxxxxxx>
    10	      1 Rutger ter Borg <rutger@xxxxxxxxxxx>
    11	      1 Laurent Barbe <laurent@xxxxxxxxxxx>
    12	      1 Kai Zhang <zakir.exe@xxxxxxxxx>
    13	      1 Jonathan Dieter <jdieter@xxxxxxxxx>
    14	      1 João Eduardo Luís <joao.luis@xxxxxxxxxxx>
    15	      1 Huang Jun <hjwsm1989@xxxxxxxxx>
    16	      1 Derek Yarnell <derek@xxxxxxxxxxxxxx>
    17	      1 David Zafman <david.zafman@xxxxxxxxxxx>
    18	      1 Dan Chai <tengweicai@xxxxxxxxx>
    19	      1 Christian Marie <pingu@xxxxxxxxxxxxx>
    20	      1 Alan Somers <asomers@xxxxxxxxx>
Reviews by organizations (one review spans multiple commits)
     1	     62 Inktank <contact@xxxxxxxxxxx>
     2	      4 Cloudwatt <libre.licensing@xxxxxxxxxxxxx>
     3	      2 Unaffiliated <no@xxxxxxxxxxxxxxxx>
     4	      1 University of Mississippi <contact@xxxxxxx>
     5	      1 Spectra Logic <contact@xxxxxxxxxxxxxxxx>
     6	      1 Lebanon Evangelical School <contact@xxxxxxxxx>
     7	      1 Intel <contact@xxxxxxxxx>
     8	      1 Deutsche Telekom <contact@xxxxxxxxxx>
     9	      1 CISCO <contact@xxxxxxxxx>
    10	      1 CCM Benchmark <contact@xxxxxxxxxxxxxxxx>
    11	      1 ArtiBit <contact@xxxxxxxxxxx>
    12	      1 Anchor Hosting <contact@xxxxxxxxxxxxx>

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

-- 
Loïc Dachary, Artisan Logiciel Libre

Attachment: signature.asc
Description: OpenPGP digital signature


[Index of Archives]     [CEPH Users]     [Ceph Large]     [Information on CEPH]     [Linux BTRFS]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]
  Powered by Linux