]> git.ipfire.org Git - thirdparty/git.git/commit
object-file: split out functions relating to object store subsystem
authorPatrick Steinhardt <ps@pks.im>
Tue, 15 Apr 2025 09:38:18 +0000 (11:38 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 15 Apr 2025 15:24:36 +0000 (08:24 -0700)
commitd9f517d051d1008178cb6c809b5f906d0905508f
treeb830a64b23f00fbfde86c651bf492a773023147a
parent632b5e3ee274a2012a88bc32af2d9cf04c5bd363
object-file: split out functions relating to object store subsystem

While we have the "object-store.h" header, most of the functionality for
object stores is actually hosted in "object-file.c". This makes it hard
to find relevant functions and causes us to mix up concerns.

Split out functions relating to the object store subsystem into a new
"object-store.c" file.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
20 files changed:
Makefile
builtin/checkout.c
builtin/merge-file.c
builtin/mktree.c
builtin/notes.c
builtin/receive-pack.c
builtin/tag.c
builtin/unpack-file.c
builtin/unpack-objects.c
commit.c
http-push.c
match-trees.c
merge-ort.c
meson.build
notes-cache.c
notes.c
object-file.c
object-file.h
object-store-ll.h
object-store.c [new file with mode: 0644]