Welcome to mirror list, hosted at ThFree Co, Russian Federation.

updateAuthors.awk « tools - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad93357353a299326f8c81830f62cfa1a51c2a11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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 ">";
  }
}