list_authors.sh 150 B

1234567
  1. #!/bin/bash
  2. sed -ir '/^\s*$/d' AUTHORS.txt # Remove empty lines
  3. echo "New authors:"
  4. git log --format='%aN <%aE>' | grep -vFf AUTHORS.txt | sort -u