diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-01-20 13:59:12 +0100 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-01-20 13:59:12 +0100 |
commit | f84f7bf1b35efa793cb3ff893a97e8b65982c01b (patch) | |
tree | dd7f3d665b417d57a9cc232c0b9b5083b0139c42 /tools/gen_authors.sh | |
parent | Added comments to PKGBUILD (diff) | |
download | smolbote-f84f7bf1b35efa793cb3ff893a97e8b65982c01b.tar.xz |
Fixed repo location in license headers
Diffstat (limited to 'tools/gen_authors.sh')
-rwxr-xr-x | tools/gen_authors.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/tools/gen_authors.sh b/tools/gen_authors.sh deleted file mode 100755 index ed24634..0000000 --- a/tools/gen_authors.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -# -# Generate a list of everyone who has contributed to the project merging those -# who commited under two names or email addresses. -# Original: https://github.com/Arora/arora/blob/master/generateAuthors -# -# To can pass an arg (which goes to git log) -# Example: to see everyone who contributed between tag 0.6 and now -# ./generateAuthors 0.6..HEAD -# -# Currently this is sorted based on # of commits, sorting contributions is not -# a simple topic as pointed out in this article http://lwn.net/Articles/222773/ -# - -# List of aliases -# Aqua, Aqua-sama <aqua@iserlohn-fortress.net>, Xian Nox, xiannox <xian.nox@gmail.com> - -hg log --template='{author}\n' \ - | sort | uniq -c | sort -n -r \ - | sed -e 's/^ *[0-9]* / /g' |