diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-08-30 11:25:27 -0400 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-08-30 11:25:35 -0400 |
commit | a9b4554156bac38cd3ca1162326ce9cf554f9b50 (patch) | |
tree | 21dacea8338235181b214fa233f93fdff3c0b022 /pkg/tools/get_authors.sh | |
parent | 22eec36ff81ae2ec2b924087ed6253894b92278a (diff) |
[pkg] add some relevant docs
Diffstat (limited to 'pkg/tools/get_authors.sh')
-rwxr-xr-x | pkg/tools/get_authors.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/tools/get_authors.sh b/pkg/tools/get_authors.sh new file mode 100755 index 00000000..0169bb17 --- /dev/null +++ b/pkg/tools/get_authors.sh @@ -0,0 +1,2 @@ +#!/bin/sh +git log --format='%aN <%aE>' | awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn | cut -d' ' -f2- |