]> git.ipfire.org Git - thirdparty/git.git/commit
object-file: get rid of `the_repository` in `force_object_loose()`
authorPatrick Steinhardt <ps@pks.im>
Thu, 17 Jul 2025 04:56:41 +0000 (06:56 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 17 Jul 2025 05:16:17 +0000 (22:16 -0700)
commitc2b5d1490a4b6b8b1a50b9ef82ec204811d7ccf1
tree622fdf5d907db68531132e3736f9fef01b9de88e
parent0df005353aca4e490478a4e8c2d090728599868e
object-file: get rid of `the_repository` in `force_object_loose()`

The function `force_object_loose()` forces an object to become a loose
object in case it only exists in its packed form. To do so it implicitly
relies on `the_repository`.

Refactor the function by passing a `struct odb_source` as parameter.
While the check whether any such loose object exists already acts on the
whole object database, writing the loose object happens in one specific
source.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/pack-objects.c
object-file.c
object-file.h