Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2023-04-11 10:41:50 +0300
committerJunio C Hamano <gitster@pobox.com>2023-04-11 18:52:09 +0300
commite93fc5d721738de978ef06acb62daa3df3c40625 (patch)
tree4ec30bf0f9ed8134917b0814dfdc76fcc7b70245
parentdabab1d6e6c49f3d4a6393a9984e3f6a4e8fb991 (diff)
treewide: remove cache.h inclusion due to object-name.h changes
Signed-off-by: Elijah Newren <newren@gmail.com> Acked-by: Calvin Wan <calvinwan@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--branch.c1
-rw-r--r--checkout.c3
-rw-r--r--fmt-merge-msg.c2
-rw-r--r--mailmap.c2
-rw-r--r--notes.c2
-rw-r--r--refs.c2
-rw-r--r--remote.c2
-rw-r--r--setup.c2
-rw-r--r--strbuf.c2
-rw-r--r--t/helper/test-oidmap.c1
-rw-r--r--t/helper/test-reach.c1
-rw-r--r--t/helper/test-submodule-config.c1
-rw-r--r--transport-helper.c2
13 files changed, 10 insertions, 13 deletions
diff --git a/branch.c b/branch.c
index f29743b161..7df982693a 100644
--- a/branch.c
+++ b/branch.c
@@ -1,5 +1,4 @@
#include "git-compat-util.h"
-#include "cache.h"
#include "advice.h"
#include "config.h"
#include "branch.h"
diff --git a/checkout.c b/checkout.c
index 9235073fc0..04238b2713 100644
--- a/checkout.c
+++ b/checkout.c
@@ -1,9 +1,10 @@
-#include "cache.h"
+#include "git-compat-util.h"
#include "object-name.h"
#include "remote.h"
#include "refspec.h"
#include "checkout.h"
#include "config.h"
+#include "strbuf.h"
struct tracking_name_data {
/* const */ char *src_ref;
diff --git a/fmt-merge-msg.c b/fmt-merge-msg.c
index 21019c932b..5af0d4715b 100644
--- a/fmt-merge-msg.c
+++ b/fmt-merge-msg.c
@@ -1,4 +1,4 @@
-#include "cache.h"
+#include "git-compat-util.h"
#include "alloc.h"
#include "config.h"
#include "environment.h"
diff --git a/mailmap.c b/mailmap.c
index d62d7bf0e7..28d389c1f9 100644
--- a/mailmap.c
+++ b/mailmap.c
@@ -1,4 +1,4 @@
-#include "cache.h"
+#include "git-compat-util.h"
#include "environment.h"
#include "string-list.h"
#include "mailmap.h"
diff --git a/notes.c b/notes.c
index c07bcbe348..02f1aa39ae 100644
--- a/notes.c
+++ b/notes.c
@@ -1,4 +1,4 @@
-#include "cache.h"
+#include "git-compat-util.h"
#include "config.h"
#include "environment.h"
#include "hex.h"
diff --git a/refs.c b/refs.c
index 979ed3fbed..d2a98e1c21 100644
--- a/refs.c
+++ b/refs.c
@@ -2,7 +2,7 @@
* The backend-independent part of the reference module.
*/
-#include "cache.h"
+#include "git-compat-util.h"
#include "advice.h"
#include "alloc.h"
#include "config.h"
diff --git a/remote.c b/remote.c
index 3afedce593..2947743d60 100644
--- a/remote.c
+++ b/remote.c
@@ -1,4 +1,4 @@
-#include "cache.h"
+#include "git-compat-util.h"
#include "abspath.h"
#include "alloc.h"
#include "config.h"
diff --git a/setup.c b/setup.c
index 8a297b3cb5..a546da755f 100644
--- a/setup.c
+++ b/setup.c
@@ -1,4 +1,4 @@
-#include "cache.h"
+#include "git-compat-util.h"
#include "abspath.h"
#include "environment.h"
#include "gettext.h"
diff --git a/strbuf.c b/strbuf.c
index 1b93d9d3c4..b2e3735ba8 100644
--- a/strbuf.c
+++ b/strbuf.c
@@ -1,4 +1,4 @@
-#include "cache.h"
+#include "git-compat-util.h"
#include "abspath.h"
#include "alloc.h"
#include "environment.h"
diff --git a/t/helper/test-oidmap.c b/t/helper/test-oidmap.c
index bf4fcfe6ef..de6ab77fda 100644
--- a/t/helper/test-oidmap.c
+++ b/t/helper/test-oidmap.c
@@ -1,5 +1,4 @@
#include "test-tool.h"
-#include "cache.h"
#include "hex.h"
#include "object-name.h"
#include "oidmap.h"
diff --git a/t/helper/test-reach.c b/t/helper/test-reach.c
index d4fa33ae75..5b6f217441 100644
--- a/t/helper/test-reach.c
+++ b/t/helper/test-reach.c
@@ -1,5 +1,4 @@
#include "test-tool.h"
-#include "cache.h"
#include "alloc.h"
#include "commit.h"
#include "commit-reach.h"
diff --git a/t/helper/test-submodule-config.c b/t/helper/test-submodule-config.c
index 4758c8654e..c7c7fdbea9 100644
--- a/t/helper/test-submodule-config.c
+++ b/t/helper/test-submodule-config.c
@@ -1,5 +1,4 @@
#include "test-tool.h"
-#include "cache.h"
#include "config.h"
#include "object-name.h"
#include "setup.h"
diff --git a/transport-helper.c b/transport-helper.c
index ca8bec04bb..6b816940dc 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -1,4 +1,4 @@
-#include "cache.h"
+#include "git-compat-util.h"
#include "transport.h"
#include "quote.h"
#include "run-command.h"