Skip to content

Commit fb92531

Browse files
committed
Add script to extract the authors from git log
1 parent 8f74e63 commit fb92531

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
_output/
22
_artifacts/
3+
AUTHORS
34
lima.REJECTED.yaml
45
default-template.yaml
56
schema-limayaml.json

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Anders F Björklund <anders.f.bjorklund@gmail.com>

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ GO_BUILD := $(strip $(GO) build $(GO_BUILD_GCFLAGS) $(GO_BUILD_LDFLAGS) $(GO_BUI
108108
.PHONY: all
109109
all: binaries manpages
110110

111+
################################################################################
112+
AUTHORS: .mailmap .git/HEAD
113+
git shortlog --summary --email --group=Author --group=trailer:Co-Authored-By | cut -f2 | sort -fu > $@
114+
111115
################################################################################
112116
# Help
113117
.PHONY: help

0 commit comments

Comments
 (0)