From 716ed41a36037459ed5bfe0775484ac2cbd90707 Mon Sep 17 00:00:00 2001 From: Andres Gomez Date: Fri, 11 Jan 2019 16:42:25 +0200 Subject: [PATCH] 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 --- bin/get-pick-list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2