github.com/vmware/govmomi@v0.43.0/scripts/contributors.sh (about) 1 #!/bin/bash -e 2 3 file="$(git rev-parse --show-toplevel)/CONTRIBUTORS" 4 5 cat <<EOF > "$file" 6 # People who can (and typically have) contributed to this repository. 7 # 8 # This script is generated by $(basename "$0") 9 # 10 11 EOF 12 13 git log --format='%aN <%aE>' | grep -v '\[bot\]' | sort -uf >> "$file"