From: LorenzoPegorari Date: Sat, 18 Apr 2026 14:17:29 +0000 (+0200) Subject: repack-promisor: add missing headers X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=d1e9254bd9a2b968e13ff7178e57a7fa3494c3c7;p=thirdparty%2Fgit.git repack-promisor: add missing headers According to the coding guidelines, a C file must directly include the header files that declare the facilities it uses. Directly include these missing headers, in order to comply with the coding guidelines. Helped-by: Junio C Hamano Signed-off-by: LorenzoPegorari Signed-off-by: Junio C Hamano --- diff --git a/repack-promisor.c b/repack-promisor.c index 06393ef06e..472aef0081 100644 --- a/repack-promisor.c +++ b/repack-promisor.c @@ -1,12 +1,18 @@ #include "git-compat-util.h" #include "repack.h" +#include "hash.h" #include "hex.h" +#include "odb.h" #include "pack.h" #include "packfile.h" #include "path.h" #include "refs.h" #include "repository.h" #include "run-command.h" +#include "strbuf.h" +#include "string-list.h" +#include "strmap.h" +#include "strvec.h" struct write_oid_context { struct child_process *cmd;