From: Mike Hommey Date: Fri, 15 Jul 2016 23:23:46 +0000 (+0900) Subject: t/t8003-blame-corner-cases.sh: Use here documents X-Git-Tag: v2.9.3~44^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/c66b470082144471fc95e669eb398c8f320d67c4?hp=c66b470082144471fc95e669eb398c8f320d67c4 t/t8003-blame-corner-cases.sh: Use here documents Somehow, this test was using: { echo A echo B } > file block to feed file contents. This changes those to the form most common in git test scripts: cat >file <<-\EOF A B EOF Signed-off-by: Mike Hommey Signed-off-by: Junio C Hamano ---