aboutsummaryrefslogtreecommitdiffstats
path: root/refs.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-02-12 10:09:19 -0800
committerJunio C Hamano <gitster@pobox.com>2024-02-12 10:09:19 -0800
commitc684b582bccde967473fd1aaff38a0becceec3d9 (patch)
treeb95e62bf580cb3c6756e52c88c04275804b449a8 /refs.c
parentGit 2.44-rc0 (diff)
parentrefs/reftable: fix leak when copying reflog fails (diff)
downloadgit-c684b582bccde967473fd1aaff38a0becceec3d9.tar.gz
git-c684b582bccde967473fd1aaff38a0becceec3d9.zip
Merge branch 'ps/reftable-backend' into kn/for-all-refs
* 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 'refs.c')
-rw-r--r--refs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/refs.c b/refs.c
index c633abf284..fff343c256 100644
--- a/refs.c
+++ b/refs.c
@@ -35,6 +35,7 @@
*/
static const struct ref_storage_be *refs_backends[] = {
[REF_STORAGE_FORMAT_FILES] = &refs_be_files,
+ [REF_STORAGE_FORMAT_REFTABLE] = &refs_be_reftable,
};
static const struct ref_storage_be *find_ref_storage_backend(unsigned int ref_storage_format)