Masaya Suzuki <masayasuzuki@xxxxxxxxxx> writes: > Yes. The reason that I've been trying to check the semantics of the > prerequisites is that I DO recognize that this is possible > format-wise. I'm not sure if this Git implementation can create such > bundles, but format-wise such bundles can be created. Yeah, now I get it. The problem is *not* that v2 format "cannot represent a shallow clone repository", but is that there is nothing that prevents a bundle in v2 format from depending on objects behind (not just at) the shallow boundary, making it impossible for a reader to guarantee that a bundle with prereqs can be used to create an equivalent shallow repository with shallow boundary at the same place as prereqs. IOW, bundle with prereqs in the v2 format allows more objects to be omitted than an equivalent shallow repository omits, because prereqs and shallow cutoff points mean different things. While we are at it, I suspect that with reachability bitmap, a "git fetch" that updates a history up to commit A to a new history up to commit B can omit more objects than what is directly reachable from the commit A. That is, if A's direct child (call it C) is a commit that reverts A, a blob in A's tree won't be in the bundle (because A is a prereq), but the blob at the same path in C is the same blob as the blob at the same path in A's parent (that is what it means for that A's direct child to be a revert of A). In the normal enumeration based on object-walk to decide which objects to send, such a blob in C will be included in the pack, but a reachability bitmap can say "if we assume the reader has A, it must have A^1, so that blob should exist at the reader, hence can be omitted from the transfer even though we are sending commit C."