2014-05-19 11:20:28 +05:30
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2016-09-08 21:15:09 -07:00
|
|
|
git log --all --format='%cN <%cE>' | sort -u | grep -v karan.misra@gmail.com |\
|
|
|
|
grep -v noreply@ | cat CONTRIBUTORS - | sort | uniq > CONTRIBUTORS.new
|
|
|
|
mv CONTRIBUTORS.new CONTRIBUTORS
|