You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
358 B

#! /bin/sh
# Create the AUTHORS file, by searching the git history.
# Run as "AUTHORS.sh" to get complete history
# Run with "AUTHORS.sh commitish..commitish" for history between tags
# shortlog will canonicalize the names using the file .mailmap
git shortlog -s ${1-} |
sed -e 's, via Elfutils-devel,,' |
cut -b8- | # strip the commit counts
sort | uniq