mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-30 21:34:36 +00:00
7 lines
284 B
Bash
Executable File
7 lines
284 B
Bash
Executable File
#!/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
|