]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Meta/Reintegrate: give a blank to separate cut mark
authorJunio C Hamano <gitster@pobox.com>
Thu, 23 Jun 2016 22:24:41 +0000 (15:24 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 23 Jun 2016 22:24:41 +0000 (15:24 -0700)
The reintegrate script can have "### cut here" comments to separate
the list of topics at certain points to group them better.  Add a
blank line after them to make a long list easier to see.

Reintegrate

index a15114a69049ddb140b86327262f02ebceebdd9e..5dbf853a024365c36b4f7af9396a1d5744d3bb15 100755 (executable)
@@ -242,7 +242,7 @@ show_merge () {
 show_pick () {
        case "$msg" in
        "### "* | "###")
-               merged="$msg"
+               merged="$msg$LF"
                ;;
        *)
                merged="$(git rev-parse --verify "$commit") pick $msg"