license : add AUTHORS

This commit is contained in:
Georgi Gerganov 2024-03-31 10:17:36 +03:00
parent 37e7854c10
commit 805d705032
No known key found for this signature in database
GPG key ID: 449E073F9DC10735
3 changed files with 645 additions and 1 deletions

6
scripts/gen-authors.sh Executable file
View file

@ -0,0 +1,6 @@
#!/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