summaryrefslogtreecommitdiffstats
path: root/utilities/gitextractcontrib.sh
blob: d4069138e47ab13a0067c2ba96a0d80f5621566a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh
#
# Extracts contributors' email addresses from the git logs.
#
# Usage: sh gitextractcontrib.sh [first[..last]]
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, you can access it online at
# http://www.gnu.org/licenses/gpl-2.0.html.
#
# Copyright (C) IBM Corporation, 2008-2019
# Copyright (C) Facebook, 2019
#
# Authors: Paul E. McKenney <paulmck@kernel.org>

git log $1 | grep -E '^ *(Signed-off-by|Reported-by)' |
	sed -e 's/ *Signed-off-by: *//' -e 's/ *Reported-by: *//' |
	sort -u | grep -v "Paul E. McKenney" |
	sed -e 's/\([^<]*\)<\([^>]*\)>/\2 \1/' | sed -e 's/ *$//' |
	sort -u -k1