Getting all-time top committers to mozilla-central (via the gecko-dev git clone)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://ehsanakhgari.org/blog/2012-10-11/data-about-peoples-contribution-to-the-mozilla-code-base/ | |
The last query on the above blog post shows how to do it: | |
$ git clone https://github.com/mozilla/gecko-dev | |
$ cd gecko-dev | |
$ git log --format='%an <%ae>' --all --no-merges | sed 's/@/--at--/' | grep -v ^commit | sort | uniq -c | sort -rn | head | |
571349 <cinnabar--at--git> | |
28812 B2G Bumper Bot <release+b2gbumper--at--mozilla.com> | |
8081 Ehsan Akhgari <ehsan--at--mozilla.com> | |
7938 Boris Zbarsky <bzbarsky--at--mit.edu> | |
7108 Ryan VanderMeulen <ryanvm--at--gmail.com> | |
6772 ffxbld <none--at--none> | |
6478 L10n Bumper Bot <release+l10nbumper--at--mozilla.com> | |
6466 Kartikaya Gupta <kgupta--at--mozilla.com> | |
6350 Mike Hommey <mh+mozilla--at--glandium.org> | |
5970 Emilio Cobos Álvarez <emilio--at--crisal.io> | |
# Results as of August 2020. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment