Jeff King <peff@xxxxxxxx> writes: > +test_expect_success 'blame does not coalesce non-adjacent result lines' ' > + cat >expect <<-EOF && > + $orig 1) ABC > + $orig 3) DEF > + EOF > + git blame --no-abbrev -s -L1,1 -L3,3 $split giraffe >actual && I like this much better than "git -c core.abbrev=40", too. Good. > + test_cmp expect actual > +' > + > test_done