aboutsummaryrefslogtreecommitdiffstats
path: root/bin/get-pick-list.sh
diff options
context:
space:
mode:
authorDylan Baker <[email protected]>2018-05-21 10:30:42 -0700
committerDylan Baker <[email protected]>2018-05-23 09:54:17 -0700
commitc8acfd5ab28e8134c9da6ce781180fa3df5967ca (patch)
tree0422c2aebcffd2dd47f33dcbf513b895ba513b59 /bin/get-pick-list.sh
parent5a639bdb810f89a9ab1018619bd2d8e9cad58a14 (diff)
bin/get-pick-listh.sh: force git --pretty=medium
Signed-off-by: Dylan Baker <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> Reviewed-by: Andres Gomez <[email protected]>
Diffstat (limited to 'bin/get-pick-list.sh')
-rwxr-xr-xbin/get-pick-list.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/get-pick-list.sh b/bin/get-pick-list.sh
index 1bd0b367d8b..9e9a39e494b 100755
--- a/bin/get-pick-list.sh
+++ b/bin/get-pick-list.sh
@@ -12,7 +12,7 @@
latest_branchpoint=`git merge-base origin/master HEAD`
# Grep for commits with "cherry picked from commit" in the commit message.
-git log --reverse --grep="cherry picked from commit" $latest_branchpoint..HEAD |\
+git log --reverse --pretty=medium --grep="cherry picked from commit" $latest_branchpoint..HEAD |\
grep "cherry picked from commit" |\
sed -e 's/^[[:space:]]*(cherry picked from commit[[:space:]]*//' -e 's/)//' > already_picked