3

Amongst the developers working on the Tor source code, which countries have the maximum representation in terms of number of contributors and overall contributions?

asheeshr
  • 1,063
  • 1
  • 10
  • 21

1 Answers1

4

I used git plus some shell to count the number of commits (git log --shortstat | awk -F: '/Author: / { print $2 }' | sort | uniq -c | sort -n). According to that more than 14000 commits came from Roger or Nick. This accounts for >80% of all commits (>17000). Some 1500 come from german speaking regions (Germany, Austria, Switzerland). There are 122 different names and email addresses committed some code. Most of them seem to come from the US.

I would guess that somewhat around 85% of the commits comes from the US, 9-10% comes from german speaking countries.

Jens Kubieziel
  • 8,630
  • 5
  • 35
  • 116