mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
8 lines
244 B
Bash
Executable File
8 lines
244 B
Bash
Executable File
#!/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'
|