OSDN Git Service

mesa: add get-pick-list.sh script into bin/
authorIan Romanick <ian.d.romanick@intel.com>
Fri, 19 Oct 2012 20:30:53 +0000 (22:30 +0200)
committerAndreas Boll <andreas.boll.dev@gmail.com>
Tue, 23 Oct 2012 17:26:56 +0000 (19:26 +0200)
NOTE: This is a candidate for the stable branches.

bin/get-pick-list.sh [new file with mode: 0755]

diff --git a/bin/get-pick-list.sh b/bin/get-pick-list.sh
new file mode 100755 (executable)
index 0000000..aae8fd5
--- /dev/null
@@ -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