Gentoo Archives: gentoo-dev

From: Kent Fredric <kentnl@g.o>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] AUTHORS file for portage repository
Date: Thu, 03 Jan 2019 18:41:36
Message-Id: 20190104074055.583b9bb5@katipo2.lan
In Reply to: Re: [gentoo-dev] AUTHORS file for portage repository by Jonas Stein
1 On Thu, 3 Jan 2019 00:25:29 +0100
2 Jonas Stein <jstein@g.o> wrote:
3
4 > git log | grep "Author: "| sort | uniq | sed "s/Author: //g" | wc -c
5
6 That's a rather round about way of doing :
7 git shortlog -e -s | cut -f 2
8
9 git shortlog -e -s | cut -f 2 | wc -c
10 37471
11
12 git shortlog -e -s | wc -l
13 998