Thread (21 messages) flat view 21 messages, 5 authors, 2016-06-15

Re: [PATCH v6 08/11] trailer: add tests for "git interpret-trailers"

From: Junio C Hamano <hidden>
Date: 2016-06-15 23:00:12

Christian Couder [off-list ref] writes:
+# We want one trailing space at the end of each line.
+# Let's use sed to make sure that these spaces are not removed
+# by any automatic tool.
+test_expect_success 'setup 3' '
+	sed -e "s/ Z\$/ /" >complex_message_trailers <<-\EOF
+Fixes: Z
+Acked-by: Z
+Reviewed-by: Z
+Signed-off-by: Z
+EOF
+'
It is a bit disappointing to see that these are flushed to the left,
when the here-doc redirection uses "<<-\EOF" (not "<<\EOF") to allow
you to indent, i.e.

	sed ... <<-\EOF
        foo
        bar
        EOF

or even more readable:

	sed ... <<-\EOF
	        foo
	        bar
        EOF

no?
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help