This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
#!/bin/sh |
| 2 |
# |
| 3 |
# Generate a list of everyone who has contributed to the project merging those who commited under two names or email addresses. |
| 4 |
# |
| 5 |
# To can pass an arg (which goes to git log) |
| 6 |
# Example: to see everyone who contributed between tag 0.6 and now |
| 7 |
# ./generateAuthors 0.6..HEAD |
| 8 |
# |
| 9 |
git log --pretty="format:%an %ae" $1 \ |
| 10 |
| sed -e 's/smart2128 /Vincenzo Reale /g' \ |
| 11 |
| sed -e 's/buster\.xtense\.dyndns\.org/ts2server\.com/g' \ |
| 12 |
| sed -e 's/^cfchris6 /Christian Franke /g' \ |
| 13 |
| sed -e 's/^faw /Jakub Wieczorek /g' \ |
| 14 |
| sed -e 's/^LEW21 /Janusz Lewandowski /g' \ |
| 15 |
| sed -e 's/lew21@pecet.(none)$/lew21st@gmail.com/g' \ |
| 16 |
| sed -e 's/adam\.treat@torchmobile\.com/treat@kde\.org/g' \ |
| 17 |
| sed -e 's/torarnv@gmail\.com/tavestbo@trolltech\.com/g' \ |
| 18 |
| sed -e 's/bks@coldkeck2\.colorado\.edu/bks24@cornell\.edu/g' \ |
| 19 |
| sed -e 's/porphyr /Mark Reiche /g' \ |
| 20 |
| sed -e 's/vinx@zulu\.(none)/smart2128@baslug\.org/g' \ |
| 21 |
| sed -e 's/Matvey Kozhev/Maia Kozheva/g' \ |
| 22 |
| sed -e 's/kristof@localhost.(none)/kristof.bal@gmail.com/g' \ |
| 23 |
| sort | uniq -c | sort -n -r | sed -e 's/^ *[0-9]* //g' |