arquillian.github.io
arquillian.github.io copied to clipboard
More details about the contributors
Could be really cool to have list of contributions for each contributor we have on the list. I think something based on git-shortlog can be a good start. Another idea might be to intregrate with ohloh (number of commits per repo etc).
Having this kind of statistics can be later leveraged for some gamification stuff (badges etc.)
This reminds me that I've been meaning to check out ohloh since Oscon and see how it presents its data. Now I also know I should check out git-shortlog :D
On Mon, Oct 22, 2012 at 4:46 AM, Bartosz Majsak [email protected]:
Could be really cool to have list of contributions for each contributor we have on the list. I think something based on git-shortlog can be a good start. Another idea might be to intregrate with ohloh (number of commits per repo etc).
Having this kind of statistics can be later leveraged for some gamification stuff (badges etc.)
— Reply to this email directly or view it on GitHubhttps://github.com/arquillian/arquillian.github.com/issues/167.
Wow, I never knew about git shortlog. For how fast it runs, that information must be indexed. I'm wondering whether I can speed up some operations in the extension by using this command.
Btw, this is your "leaderboard" command:
git shortlog -n
:)
Omg, this command would drastically simplify the logic in arquillian.rb. I can get a list of all contributors for a release in one shot:
git shortlog -e commitA..commitB subpath/
That's almost all the data I'm capturing manually by walking commits.
I had this feeling that this stuff might be really useful :)
Closed by accident, sorry!
ha.. nice command :) Fairly simple to parse the output