From 3f9d44ff15223e7f1319f9c71138f75d032c3afb Mon Sep 17 00:00:00 2001 From: Romain Porte Date: Fri, 26 May 2017 00:27:17 +0200 Subject: [PATCH] Added authors file and generate_authors.sh (#227) * Added authors file Generated using `git shortlog -s -n` and sorted by alphabetical order using vim. * Added generate_authors.sh script and ordered author list * Regenerated AUTHORS with .mailmap --- AUTHORS | 26 ++++++++++++++++++++++++++ generate_authors.sh | 3 +++ 2 files changed, 29 insertions(+) create mode 100644 AUTHORS create mode 100755 generate_authors.sh diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..dd865d0 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,26 @@ +Ahmed Tahri +Asuki Kono +belono +Christoph Heuel +Cody (Quantified Code Bot) +Curtis // mashedkeyboard +Davis Goglin +Dean Rispin +Dmytro Katyukha +Hark +Joel Lehtonen +Kristi +ldos +Manuel F Martinez +Michael Billington +Michael Elsdörfer +Nathan Bookham +Patrick Kanzler +Qian Linfeng +Renato Lorenzi +Romain Porte +Sam Cheng +Stephan Sokolow +Thijs Triemstra +Thomas van den Berg +ysuolmai diff --git a/generate_authors.sh b/generate_authors.sh new file mode 100755 index 0000000..6ab31c4 --- /dev/null +++ b/generate_authors.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +git shortlog -s -n | cut -f2 | sort