Closed fraga closed 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
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
Nice! Love it :heart:
Small hack to get all authors (developers who committed code into the repo):
Getting the count of commits