refdb: wire up "reftable" storage format

Wire up the "reftable" storage format via the newly implemented reftable
backend.
This commit is contained in:
Patrick Steinhardt
2025-07-12 00:00:21 +02:00
parent 6701e02f1c
commit ee0972cac8
3 changed files with 10 additions and 1 deletions

View File

@@ -23,7 +23,8 @@ GIT_BEGIN_DECL
/** The type of the refdb as determined by "extensions.refStorage". */
typedef enum {
GIT_REFDB_FILES = 1 /**< Files backend using loose and packed refs. */
GIT_REFDB_FILES = 1, /**< Files backend using loose and packed refs. */
GIT_REFDB_REFTABLE = 2 /**< Reftable backend. */
} git_refdb_t;
/**