Welcome to mirror list, hosted at ThFree Co, Russian Federation.

list_authors.sh « tools - github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f9391f52342cc637dc7cfb08f5f5c7481cb38f2d (plain)
1
2
3
4
5
6
7
#!/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