From 60861388e7a0dff46cd4c23cebd80164412fef51 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 23 Sep 2019 11:05:16 -0700 Subject: [PATCH] bin/get-pick-list: use --oneline=pretty instead of --oneline --oneline shortens hashes, while --oneline=pretty doesn't, otherwise they are the same. Having full hashes is convenient as that is the format that the bin/.cherry-ignore script requires to work correctly. Reviewed-by: Eric Engestrom 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 1db6884..40a1388 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 --no-patch --oneline $sha + git --no-pager show --no-patch --pretty=oneline $sha done rm -f already_picked -- 2.7.4