Hi, On Sun, 4 Nov 2007, Kristian Høgsberg wrote: > +test_tick > > test_expect_success 'partial commit that involves removal (3)' ' We usually put the test_tick into the test case. IOW test_expect_success 'message' ' test_tick && ... > ' > > +oldtick=$GIT_AUTHOR_DATE > +test_tick > + > +author="The Real Author <someguy@xxxxxxxxxxxxx>" > +committer="$GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE" > + > +test_expect_success 'amend commit to fix author' ' Same here. BTW: is this committer mangling really necessary? I thought only GIT_COMMITTER_DATE was relevant. And that is easily replaced by sed -e "s/^\(committer.* \)[0-9][0-9]*$/\1$GIT_COMMITTER_DATE/" Ciao, Dscho