Sort contributors by lines changed

Previously number of commits were used
pull/246/head
Tim Byrne 4 years ago
parent 24e3dab328
commit 4ff12c7125
No known key found for this signature in database
GPG Key ID: 14DB4FC2465A4B12

@ -170,7 +170,11 @@ yadm.md: yadm.1
.PHONY: contrib
contrib:
@echo "CONTRIBUTORS\n" > CONTRIBUTORS
@git shortlog -ns master gh-pages develop dev-pages | cut -f2 >> CONTRIBUTORS
@IFS=$$'\n'; for author in $$(git shortlog -ns master gh-pages develop dev-pages | cut -f2); do \
git log master gh-pages develop dev-pages \
--author="$$author" --format=tformat: --numstat | \
awk "{sum += \$$1 + \$$2} END {print sum \"\t\" \"$$author\"}"; \
done | sort -nr | cut -f2 >> CONTRIBUTORS
.PHONY: install
install:

Loading…
Cancel
Save