spacevim/bundle/vim-qml/bin/update_contributors.sh

12 lines
243 B
Bash
Raw Normal View History

2024-08-21 14:17:26 +08:00
#!/bin/sh
cat <<_EOF > CONTRIBUTORS.md
# Contributors
In addition to the original work done by Warwick Allison, the following people
have made contributions:
_EOF
git shortlog -s | gawk '{$1=""; print "*" $0}' | sort -u >> CONTRIBUTORS.md