pebble/third_party/nanopb/tools/list_authors.sh

8 lines
150 B
Bash
Raw Permalink Normal View History

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