Arora / arora forked from icefox/arora
- Source
- Commits
- Network (29)
- Downloads (13)
- Graphs
-
Tree:
90b03c1
arora / generateAuthors
| 3b9680b5 » | icefox | 2009-03-26 | 1 | #!/bin/sh | |
| c9a2d698 » | icefox | 2009-04-28 | 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 | # | ||||
| 3b9680b5 » | icefox | 2009-03-26 | 9 | git log --pretty="format:%an %ae" $1 \ | |
| 12f13f85 » | icefox | 2008-10-20 | 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' \ | ||||
| cb476356 » | icefox | 2009-01-29 | 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' \ | ||||
| 3b9680b5 » | icefox | 2009-03-26 | 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' \ | ||||
| b2cd1096 » | icefox | 2009-02-20 | 19 | | sed -e 's/porphyr /Mark Reiche /g' \ | |
| 3b9680b5 » | icefox | 2009-03-26 | 20 | | sed -e 's/vinx@zulu\.(none)/smart2128@baslug\.org/g' \ | |
| 025a17dc » | Sikon | 2009-04-23 | 21 | | sed -e 's/Matvey Kozhev/Maia Kozheva/g' \ | |
| dfd51d1b » | icefox | 2009-05-24 | 22 | | sed -e 's/kristof@localhost.(none)/kristof.bal@gmail.com/g' \ | |
| 12f13f85 » | icefox | 2008-10-20 | 23 | | sort | uniq -c | sort -n -r | sed -e 's/^ *[0-9]* //g' | |
