mirror of
https://github.com/google/pebble.git
synced 2025-03-16 01:01:20 +00:00
8 lines
150 B
Bash
8 lines
150 B
Bash
|
#!/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
|
||
|
|