qutebrowser/scripts/generate_authors.sh
2014-04-22 07:20:25 +02:00

10 lines
218 B
Bash
Executable File

#!/bin/bash
# Inspired by herbstluftwm.
cat > AUTHORS <<EOF
Contributors, sorted by the number of commits in descending order:
$(git log --format="%aN" | sort | uniq -c | sort -nr | sed 's/^[ ]*[^ ]*[ ]*//')
EOF