From 84d9b4dc979ee107d4bcc525a8c576db44570a30 Mon Sep 17 00:00:00 2001 From: K Jayatheerth Date: Thu, 6 Aug 2026 15:45:56 +0530 Subject: [PATCH] repo: remove unused setup.h include The repository prefix is now stored in `struct repository`, so builtin/repo.c no longer uses any declarations from setup.h. Remove the now-unused include. Mentored-by: Justin Tobler Mentored-by: Lucas Seiki Oshiro Signed-off-by: K Jayatheerth Signed-off-by: Junio C Hamano --- builtin/repo.c | 1 - 1 file changed, 1 deletion(-) diff --git a/builtin/repo.c b/builtin/repo.c index 2a4e012e06..3df938e852 100644 --- a/builtin/repo.c +++ b/builtin/repo.c @@ -14,7 +14,6 @@ #include "ref-filter.h" #include "refs.h" #include "revision.h" -#include "setup.h" #include "strbuf.h" #include "string-list.h" #include "shallow.h"