qutebrowser/scripts/generate_authors.sh

10 lines
218 B
Bash
Raw Normal View History

2014-04-22 07:18:19 +02:00
#!/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