From: Richard Hartmann Date: Mon, 11 Jun 2012 09:52:12 +0000 (-0700) Subject: Merge pull request #30 from esc/feature/better_author_list X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/5fa85a684462df45aac4003f8a5f5375b7b1b5de?hp=5f663f1dfb3d60a41649b382c74e9fdc982eaa8e Merge pull request #30 from esc/feature/better_author_list use git shortlog and .mailmap to remove duplicates --- diff --git a/.mailmap b/.mailmap new file mode 100644 index 0000000..bf08497 --- /dev/null +++ b/.mailmap @@ -0,0 +1 @@ +Richard Hartmann diff --git a/tools/list_AUTHORS b/tools/list_AUTHORS index 2b91ac9..3518205 100755 --- a/tools/list_AUTHORS +++ b/tools/list_AUTHORS @@ -2,4 +2,4 @@ echo 'Alphabetical list of everyone who ever committed to this repository ' -git log --all --format='%an <%ae>' | sort -u -k2 +git shortlog -se --all | cut -f1 --complement | sort -u -k2