summaryrefslogtreecommitdiffstats
path: root/setup.h
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2023-05-16 08:33:44 +0200
committerJunio C Hamano <gitster@pobox.com>2023-06-21 22:39:53 +0200
commite8cf8ef5075d7805846f0f7159f8d072b07e588e (patch)
treeb69f575968eeff49cb682502e5687e1587f6374c /setup.h
parentinit-db, clone: change unnecessary global into passed parameter (diff)
downloadgit-e8cf8ef5075d7805846f0f7159f8d072b07e588e.tar.xz
git-e8cf8ef5075d7805846f0f7159f8d072b07e588e.zip
setup: adopt shared init-db & clone code
The functions init_db() and initialize_repository_version() were shared by builtin/init-db.c and builtin/clone.c, and declared in cache.h. Move these functions, plus their several helpers only used by these functions, to setup.[ch]. Diff best viewed with `--color-moved`. Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r--setup.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/setup.h b/setup.h
index 4c1ca9d0c9..58fd2605dd 100644
--- a/setup.h
+++ b/setup.h
@@ -140,6 +140,15 @@ int verify_repository_format(const struct repository_format *format,
*/
void check_repository_format(struct repository_format *fmt);
+#define INIT_DB_QUIET 0x0001
+#define INIT_DB_EXIST_OK 0x0002
+
+int init_db(const char *git_dir, const char *real_git_dir,
+ const char *template_dir, int hash_algo,
+ const char *initial_branch, int init_shared_repository,
+ unsigned int flags);
+void initialize_repository_version(int hash_algo, int reinit);
+
/*
* NOTE NOTE NOTE!!
*