seixasfelipe / cleaners

Cleaners - Management Application
MIT License
2 stars 0 forks source link

adding authors #53

Closed fraga closed 11 years ago

fraga commented 11 years ago

Small hack to get all authors (developers who committed code into the repo):

$ git log --pretty=format:"%an"| env LC_ALL=C sort| env LC_ALL=C uniq -c| env LC_ALL=C sort -r

Getting the count of commits

git log --pretty=format:"%an"| env LC_ALL=C sort| env LC_ALL=C uniq -c | env LC_ALL=C sort -r 
fraga commented 11 years ago

Fixing the order:

$ git log --pretty=format:"%an"| env LC_ALL=C sort| env LC_ALL=C uniq -c | env LC_ALL=C sort -r
fabianoalmeida commented 11 years ago

Nice! Love it :heart: