Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@staktrace
Created August 19, 2020 22:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save staktrace/17e9042134fd5ef8a098421656a41dc2 to your computer and use it in GitHub Desktop.
Save staktrace/17e9042134fd5ef8a098421656a41dc2 to your computer and use it in GitHub Desktop.
Getting all-time top committers to mozilla-central (via the gecko-dev git clone)
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