On Thu, Apr 27, 2023 at 04:13:31AM -0400, Jeff King wrote: > @@ t/t4212-log-corrupt.sh: test_expect_success 'absurdly far-in-future date' ' > + # test bogus timestamps with git-log, 2014-02-24) for more discussion. > + echo : >expect && > + git log -1 --format="%at:%ct" $ws_commit >actual && > ++ test_cmp expect actual && > ++ git log -1 --format="%at:%ct" $vt_commit && > + test_cmp expect actual In case anyone is just reading the range-diff, you may notice that the added git-log invocation here is missing its ">actual" redirect. I noticed this while sending out, and it's fixed in the actual v3 patch that was sent. -Peff