Skip to content

Commit 5fb14f8

Browse files
authored
Fixes co-author detection from commit comments (#98)
1 parent 64fb562 commit 5fb14f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ knowledge_areas_summary.md: $(SOURCES) knowledge_areas.dat
115115
$(MAKE_MARKDOWN) < knowledge_areas.dat > knowledge_areas_summary.md
116116

117117
contributors.md:
118-
git log --all --pretty="%aN" | sort | uniq > contributors.md
118+
git log --format="%aN%n%(trailers:key=Co-authored-by,valueonly=true)" | sed 's/ <.*>//g' | sort | uniq > contributors.md
119119

120120
################################################################################
121121
# Establish Pandoc settings.

0 commit comments

Comments
 (0)