On Tue, Jul 27, 2010 at 10:06, David D. Kilzer <ddkilzer@xxxxxxxxxx> wrote: > +test_expect_success 'setup' ' > + echo 1 >F1 && > + git add F1 && > + git commit -m "commit: new file F1" && > + > + echo 2 >F2 && > + git add F2 && > + git commit -m "commit: new file F2" && Use test_commit for these: test_commit "commit: new file F1" F1 1 && test_commit "commit: new file F2" F2 2 && ... -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html