> +test_expect_success 'get_merge_bases_many' '
> + cat >input <<-\EOF &&
> + A:commit-5-7
> + X:commit-4-8
> + X:commit-6-6
> + X:commit-8-3
> + EOF
> + {
> + printf "get_merge_bases_many(A,X):\n" &&
> + git rev-parse commit-5-6 &&
> + git rev-parse commit-4-7
Please call rev-parse only once, giving both tips as argument, i.e.
printf "get_merge_bases_many(A,X):\n" &&
git rev-parse commit-5-6 \
commit-4-7
ought to produce the same output
Thanks,
Stefan

