summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2012-10-19 22:30:53 +0200
committerAndreas Boll <andreas.boll.dev@gmail.com>2012-10-23 19:26:56 +0200
commit2d95db660e20787bcfe6af55569299515b434971 (patch)
treed4a518a95214658cc9cda0bd4b60570ba16d355b /bin
parent2e0de807513abdeb239ce02177ccbbd6b18af90c (diff)
downloadexternal_mesa3d-2d95db660e20787bcfe6af55569299515b434971.zip
external_mesa3d-2d95db660e20787bcfe6af55569299515b434971.tar.gz
external_mesa3d-2d95db660e20787bcfe6af55569299515b434971.tar.bz2
mesa: add get-pick-list.sh script into bin/
NOTE: This is a candidate for the stable branches.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/get-pick-list.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/bin/get-pick-list.sh b/bin/get-pick-list.sh
new file mode 100755
index 0000000..aae8fd5
--- /dev/null
+++ b/bin/get-pick-list.sh
@@ -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