llama.cpp/scripts/gen-authors.sh

7 lines
284 B
Bash
Raw Normal View History

2024-03-31 07:17:36 +00:00
#!/bin/bash
printf "# this file is auto-generated by scripts/gen-authors.sh\n\n" > AUTHORS
printf "List of llama.cpp contributors in chronological order of their first commit:\n\n" >> AUTHORS
git log --format='%an <%ae>' --reverse --date=short master | awk '!seen[$0]++' >> AUTHORS