Jeff King <peff@xxxxxxxx> writes: > +test_expect_success POSIXPERM 'info/refs is readable in unshared repo' ' > + rm -f .git/info/refs && > + test_unconfig core.sharedrepository && > + umask 002 && > + git update-server-info && > + echo "-rw-rw-r--" >expect && > + modebits .git/info/refs >actual && > + test_cmp expect actual > +' Hmm, the label and the test look somewhat out-of-sync. "readable as long as umask allows it" would be more in line with what the fix is about (i.e. I would expect a test with that title to pass even if I changed 'umask 002' to 'umask 007', but that is not what we want in this series). > test_expect_success POSIXPERM 'git reflog expire honors core.sharedRepository' ' > umask 077 && > git config core.sharedRepository group && -- 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