aboutsummaryrefslogtreecommitdiffstats
path: root/repository.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-02-26 18:10:23 -0800
committerJunio C Hamano <gitster@pobox.com>2024-02-26 18:10:23 -0800
commitb4385bf016d0d4b8e9bea6564e2d727082067f69 (patch)
tree969b434f3333b5dafbb8077b095d116362674f87 /repository.h
parent3c2a3fdc388747b9eaf4a4a4f2035c1c9ddb26d0 (diff)
parent8a0bebdeaec60623c8a791b197d574bdd031a452 (diff)
downloadgit-b4385bf016d0d4b8e9bea6564e2d727082067f69.tar.gz
Merge branch 'ps/reftable-backend'
Integrate the reftable code into the refs framework as a backend. * ps/reftable-backend: refs/reftable: fix leak when copying reflog fails ci: add jobs to test with the reftable backend refs: introduce reftable backend
Diffstat (limited to 'repository.h')
-rw-r--r--repository.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/repository.h b/repository.h
index 21949c5a17..9bf1e33d25 100644
--- a/repository.h
+++ b/repository.h
@@ -24,8 +24,9 @@ enum fetch_negotiation_setting {
FETCH_NEGOTIATION_NOOP,
};
-#define REF_STORAGE_FORMAT_UNKNOWN 0
-#define REF_STORAGE_FORMAT_FILES 1
+#define REF_STORAGE_FORMAT_UNKNOWN 0
+#define REF_STORAGE_FORMAT_FILES 1
+#define REF_STORAGE_FORMAT_REFTABLE 2
struct repo_settings {
int initialized;