]> git.feebdaed.xyz Git - 0xmirror/git.git/commit
streaming: get rid of `the_repository`
authorPatrick Steinhardt <ps@pks.im>
Sun, 23 Nov 2025 18:59:38 +0000 (19:59 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sun, 23 Nov 2025 20:56:45 +0000 (12:56 -0800)
commitc26da3446e98ad4aa98ec9154c70c6fd35cb9ad6
tree0d49eeae98907ce7139f3c47ae8f27e02570cb6d
parent4c89d31494bff4bde6079a0e0821f1437e37d07b
streaming: get rid of `the_repository`

Subsequent commits will move the backend-specific logic of object
streaming into their respective subsystems. These subsystems have gotten
rid of `the_repository` already, but we still use it in two locations in
the streaming subsystem.

Prepare for the move by fixing those two cases. Converting the logic in
`open_istream_pack_non_delta()` is trivial as we already got the object
database as input.

But for `stream_blob_to_fd()` we have to add a new parameter to make it
accessible. So, as we already have to adjust all callers anyway, rename
the function to `odb_stream_blob_to_fd()` to indicate it's part of the
object subsystem.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/cat-file.c
builtin/fsck.c
builtin/log.c
entry.c
parallel-checkout.c
streaming.c
streaming.h