From 87d80fceb4d6a357116adf5e087ce53e4f255a9d Mon Sep 17 00:00:00 2001 From: Florian Sattler Date: Mon, 4 Nov 2024 21:20:17 +0100 Subject: [PATCH] Fixes co-author detection from commit comments --- sources/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/Makefile b/sources/Makefile index e9ddd99..94c3def 100644 --- a/sources/Makefile +++ b/sources/Makefile @@ -115,7 +115,7 @@ knowledge_areas_summary.md: $(SOURCES) knowledge_areas.dat $(MAKE_MARKDOWN) < knowledge_areas.dat > knowledge_areas_summary.md contributors.md: - git log --all --pretty="%aN" | sort | uniq > contributors.md + git log --format="%aN%n%(trailers:key=Co-authored-by,valueonly=true)" | sed 's/ <.*>//g' | sort | uniq > contributors.md ################################################################################ # Establish Pandoc settings.