mesa: add get-pick-list.sh script into bin/

NOTE: This is a candidate for the stable branches.
This commit is contained in:
Ian Romanick 2012-10-19 22:30:53 +02:00 committed by Andreas Boll
parent 2e0de80751
commit 2d95db660e
1 changed files with 21 additions and 0 deletions

21
bin/get-pick-list.sh Executable file
View File

@ -0,0 +1,21 @@
#!/bin/sh
git log --reverse --pretty=oneline HEAD..origin/master | cut -d' ' -f1 |\
while read sha
do
# Check to see whether the patch was marked as a candidate for the stable tree.
if git log -n1 $sha | grep -iq '^[[:space:]]*NOTE: This is a candidate' ; then
if [ -f .git/cherry-ignore ] ; then
if grep -q ^$sha .git/cherry-ignore ; then
continue
fi
fi
# Check to see if it has already been picked over.
if git log origin/master..HEAD | grep -q "cherry picked from commit $sha"; then
continue
fi
git log -n1 --pretty=oneline $sha | cat
fi
done