mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 14:35:27 +08:00
11 lines
283 B
Bash
Executable File
11 lines
283 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
function get_author_email(){
|
|
email=$(git --no-pager show -s --format=\'%ae\' HEAD )
|
|
if [[ "${email}" == 'nobody@nowhere' ]]; then
|
|
email=$(git --no-pager show -s --format=\'%ae\' HEAD^ )
|
|
fi
|
|
echo ${email} | sed $'s/\'//g'
|
|
}
|
|
get_author_email |