> > > [...] > > +test_expect_success 'specify merge-base as parent of branch2' ' > > + # Setup > > + git init base-b2-p && ( > > It's good practice to nuke it after the test: > > test_when_finished "rm -rf base-b2-p" && > git init base-b2-p > > Thanks for the reviews, I'll fix it in the next patch. > > Could avoid the subshell-ing with: > > test_commit -C base-b2-p c1 file1 && > [...] Nice.