Merge pull request #66 from stevvooe/autogenerate-authors-file
Autogenerate AUTHORS file for distribution repo
This commit is contained in:
commit
82a7101f21
3 changed files with 27 additions and 0 deletions
4
.mailmap
Normal file
4
.mailmap
Normal file
|
@ -0,0 +1,4 @@
|
|||
Stephen J Day <stephen.day@docker.com> Stephen Day <stevvooe@users.noreply.github.com>
|
||||
Stephen J Day <stephen.day@docker.com> Stephen Day <stevvooe@gmail.com>
|
||||
Olivier Gambier <olivier@docker.com> Olivier Gambier <dmp42@users.noreply.github.com>
|
||||
Brian Bland <brian.bland@docker.com> Brian Bland <r4nd0m1n4t0r@gmail.com>
|
8
AUTHORS
Normal file
8
AUTHORS
Normal file
|
@ -0,0 +1,8 @@
|
|||
Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
|
||||
Andrey Kostov <kostov.andrey@gmail.com>
|
||||
Anton Tiurin <noxiouz@yandex.ru>
|
||||
Arnaud Porterie <arnaud.porterie@docker.com>
|
||||
Brian Bland <brian.bland@docker.com>
|
||||
Josh Hawn <josh.hawn@docker.com>
|
||||
Olivier Gambier <olivier@docker.com>
|
||||
Stephen J Day <stephen.day@docker.com>
|
15
Makefile
Normal file
15
Makefile
Normal file
|
@ -0,0 +1,15 @@
|
|||
# This project makefile is around for generating peices of documentation and
|
||||
# code. For most purposes, running it is not necessary.
|
||||
|
||||
.PHONY: clean
|
||||
.DEFAULT: default
|
||||
|
||||
default:
|
||||
@echo Please read the make targets before using this Makefile. It is \
|
||||
currently only used for documentation and autogenerated files.
|
||||
|
||||
AUTHORS: .mailmap .git/ORIG_HEAD .git/FETCH_HEAD .git/HEAD
|
||||
git log --format='%aN <%aE>' | sort -fu >> $@
|
||||
|
||||
clean:
|
||||
rm -rf AUTHORS
|
Loading…
Reference in a new issue