On 20.04.2012 [22:46:54 +0000], Spear, Raymond (Mission Critical Linux) wrote: > If this is the wrong place to ask this, I apologize. But, it's the > only place I could find to ask. > > Is there an approximate count of how many people are contributing > patches worldwide to autotest? If there is, the count broken down by > core vs the tests themselves? > > I've done git short-log -s but that seems to be too few people to be > all patch contributors.
-s just tells you the Authors. You need all the contributors: git log | grep 'Signed-off-by' | sort | uniq | wc -l 220 That is probably closer, but may still miss things like Tested-by, Reported-by, etc. -Nish -- Nishanth Aravamudan <[email protected]> IBM Linux Technology Center _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
