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

Re: [PATCH] Force new line at end of commit message

From: Johannes Schindelin <hidden>
Date: 2016-06-15 22:44:01

Hi,

On Sat, 29 Dec 2007, Junio C Hamano wrote:
Johannes Schindelin [off-list ref] writes:
quoted
quoted
 		echo "# This is a combination of $COUNT commits."
-		sed -n "2,\$p" < "$SQUASH_MSG"
+		sed -e 1d -e '2,/^./{
+			/^$/d
+		}' <"$SQUASH_MSG"
If I read this correctly (haven't tested), then _all_ empty lines are 
removed from the SQUASH_MSG, right?  This is not what I want.
That is no what I wanted either.

"1d" removes the "# This is a combination of <$n> commits." from
the previous round, "2,/^./{ ... }" says apply what's in {} to
lines from second line to the first non-empty line, and what's
in {} is to remove empty ones.
Okay, so it removes only the empty lines between the first line and the 
next non-empty line.

But if I understood the OP correctly, the problem was a missing newline at 
the end of the commit message, no?

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