Sort contributors by lines changed
Previously number of commits were used
This commit is contained in:
parent
24e3dab328
commit
4ff12c7125
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -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…
Reference in a new issue