Junio C Hamano <gitster <at> pobox.com> writes:
...
is easier to read and maintain if written like so (with using HT
properly---our MUAs may damage it and turn the indentation into
spaces):
... &&
sed -e "s/ Z$/ /" >>expect <<-\EOF &&
Fixes: Z
Acked-by= Z
Reviewed-by: Z
Signed-off-by: Z
EOF
...
How about:
printf '%s: \n' Fixes Acked-by Reviewed-by Signed-off-by >> expect
This solution scores high marks in both readability and maintainability
in my mind.