mirror of
https://gitee.com/openharmony/third_party_rust_bindgen
synced 2024-12-03 04:54:40 +00:00
20 lines
305 B
Bash
20 lines
305 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -eu
|
||
|
set -o pipefail
|
||
|
|
||
|
cd "$(dirname $0)"
|
||
|
|
||
|
if [[ -z "${1+x}" ]]; then
|
||
|
read -p "List friends since which commit/tag? " since
|
||
|
echo
|
||
|
else
|
||
|
since=$1
|
||
|
fi
|
||
|
|
||
|
git shortlog -s -n "$since.." \
|
||
|
| cut -f 2- \
|
||
|
| sort -u \
|
||
|
| grep -v bors\-servo \
|
||
|
| xargs -I{} echo "- {}"
|