From: Andres Gomez Date: Fri, 11 Jan 2019 14:42:25 +0000 (+0200) Subject: bin/get-pick-list.sh: fix the oneline printing X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=716ed41a36037459ed5bfe0775484ac2cbd90707;p=mesa.git bin/get-pick-list.sh: fix the oneline printing "--summary" will also print extended header information such as creations, renames and mode changes. Let's just use "--no-patch", which suppresses the diff output. v2: Use "--no-patch" instead of the "-s" abbreviation (Eric). Fixes: 559c32d2412 ("bin/get-pick-list.sh: simplify git oneline printing") Cc: Juan A. Suarez Cc: Eric Engestrom Cc: Dylan Baker Cc: Emil Velikov Signed-off-by: Andres Gomez Reviewed-by: Eric Engestrom Reviewed-by: Emil Velikov Reviewed-by: Juan A. Suarez --- diff --git a/bin/get-pick-list.sh b/bin/get-pick-list.sh index 79b7a295ea6..e7a2d0dce40 100755 --- a/bin/get-pick-list.sh +++ b/bin/get-pick-list.sh @@ -143,7 +143,7 @@ do esac printf "[ %8s ] " "$tag" - git --no-pager show --summary --oneline $sha + git --no-pager show --no-patch --oneline $sha done rm -f already_picked