mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
241 B
14 lines
241 B
15 years ago
|
# git log --pretty='format:%ae %an' | tail -r | awk -f updateAuthors.awk
|
||
|
{
|
||
|
if (!x[$1]++) {
|
||
|
#print $0
|
||
|
n = split($0, a, " ");
|
||
|
s = a[2];
|
||
|
for (i = 3; i <= n ; i++) {
|
||
|
s = s " " a[i];
|
||
|
}
|
||
|
print s " <" $1 ">";
|
||
|
}
|
||
|
}
|
||
|
|