mirror of
https://github.com/google/pebble.git
synced 2025-03-15 08:41:21 +00:00
7 lines
150 B
Bash
Executable file
7 lines
150 B
Bash
Executable file
#!/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
|
|
|