mirror of
https://github.com/google/pebble.git
synced 2025-11-21 23:10:54 -05:00
8 lines
150 B
Bash
Executable File
8 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
|
|
|