Am 2/15/2012 0:45, schrieb Zbigniew Jędrzejewski-Szmek: > +test_expect_success 'preparation' ' > + > abcd && > + git add abcd && > + git commit -m message && > + seq 1000 > abcd && > + git commit -m message abcd Please don't use seq (here and in some more places in this series); we don't have it on Windows. You can write it explicitly: i=0 && while test $i -lt 1000 do i=$(($i + 1)) echo $i && done >abcd && ... -- Hannes -- 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