mirror of
https://github.com/kidoman/embd
synced 2024-12-22 04:40:04 +01:00
6 lines
206 B
Bash
Executable File
6 lines
206 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
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
|