On Thu, Dec 13, 2018 at 05:08:43PM +0100, Ævar Arnfjörð Bjarmason wrote: > Now that we have this maybe we should discuss why these tests show > different things: > > > diff --git a/t/t5500-fetch-pack.sh b/t/t5500-fetch-pack.sh > > index 086f2c40f6..8b1217ea26 100755 > > --- a/t/t5500-fetch-pack.sh > > +++ b/t/t5500-fetch-pack.sh > > @@ -628,7 +628,10 @@ test_expect_success 'fetch-pack cannot fetch a raw sha1 that is not advertised a > > test_commit -C server 6 && > > > > git init client && > > - test_must_fail git -C client fetch-pack ../server \ > > + > > + # Other protocol versions (e.g. 2) allow fetching an unadvertised > > + # object, so run this test with the default protocol version (0). > > + test_must_fail env GIT_TEST_PROTOCOL_VERSION= git -C client fetch-pack ../server \ > > $(git -C server rev-parse refs/heads/master^) 2>err && > > What? So the equivalent of uploadpack.allowAnySHA1InWant=true is on for > v2 all the time? Yeah, I actually didn't realize it until working on the earlier series, but this is the documented behavior: $ git grep -hC3 'want <oid>' Documentation/technical/protocol-v2.txt A `fetch` request can take the following arguments: want <oid> Indicates to the server an object which the client wants to retrieve. Wants can be anything and are not limited to advertised objects. An interesting implication of this at GitHub (and possibly other hosters) is that it exposes objects from shared storage via unexpected repos. If I fork torvalds/linux to peff/linux and push up object X, a v0 fetch will (by default) refuse to serve it to me. But v2 will happily hand it over, which may confuse people into thinking that the object is (or at least at some point was) in Linus's repository. -Peff