Add script to help generate PR messages (#8074)

* Add script to help generate PR messages

* newline
This commit is contained in:
Dan Field 2019-03-07 16:56:46 -08:00 committed by GitHub
parent a48cd16e07
commit 95ef58cf48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
tools/engine_roll_pr_desc.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
if [[ $1 == '' ]]; then
echo 'Usage: engine_roll_pr_desc.sh <from git hash>..<to git hash>'
exit 1
fi
git log --oneline --no-merges --no-color $1 | sed 's/^/flutter\/engine@/g' | sed -e 's/(\(#[0-9]*)\)/\(flutter\/engine\1/g'