On Tue, Feb 23, 2021 at 7:26 AM Derrick Stolee <stolee@xxxxxxxxx> wrote: > On 2/23/2021 2:31 AM, Eric Sunshine wrote: > > +test_expect_success 'register and unregister bare repo' ' > > + test_when_finished "git config --global --unset-all maintenance.repo || :" && > > + test_might_fail git config --global --unset-all maintenance.repo && > > + git init --bare barerepo && > > + ( > > + cd barerepo && > > + git maintenance register && > > + git config --get --global --fixed-value maintenance.repo "$(pwd)" && > > I'm concerned about this test passing on Windows, but if the CI build is happy, > then I'm happy. I had a slight worry about Windows, as well, but (1) this is copied directly from an earlier test in this script which does pass on Windows, and (2) I tested on Windows, and it works fine. So, all is good. > Reviewed-by: Derrick Stolee <dstolee@xxxxxxxxxxxxx> Thanks.