diff options
| author | Patrick Steinhardt <ps@pks.im> | 2025-04-15 11:38:18 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-04-15 08:24:36 -0700 |
| commit | d9f517d051d1008178cb6c809b5f906d0905508f (patch) | |
| tree | b830a64b23f00fbfde86c651bf492a773023147a /http-push.c | |
| parent | 632b5e3ee274a2012a88bc32af2d9cf04c5bd363 (diff) | |
| download | git-d9f517d051d1008178cb6c809b5f906d0905508f.tar.gz | |
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>
Diffstat (limited to 'http-push.c')
| -rw-r--r-- | http-push.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/http-push.c b/http-push.c index 1b030d96f4..806eb67cf1 100644 --- a/http-push.c +++ b/http-push.c @@ -19,6 +19,7 @@ #include "tree-walk.h" #include "url.h" #include "packfile.h" +#include "object-file.h" #include "object-store-ll.h" #include "commit-reach.h" |
