aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
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 /Documentation
parentc875e0b8e036c12cfbf6531962108a063c7a821c (diff)
parent8a0bebdeaec60623c8a791b197d574bdd031a452 (diff)
downloadgit-c684b582bccde967473fd1aaff38a0becceec3d9.tar.gz
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 'Documentation')
-rw-r--r--Documentation/ref-storage-format.txt2
-rw-r--r--Documentation/technical/repository-version.txt5
2 files changed, 5 insertions, 2 deletions
diff --git a/Documentation/ref-storage-format.txt b/Documentation/ref-storage-format.txt
index 1a65cac468..14fff8a9c6 100644
--- a/Documentation/ref-storage-format.txt
+++ b/Documentation/ref-storage-format.txt
@@ -1 +1,3 @@
* `files` for loose files with packed-refs. This is the default.
+* `reftable` for the reftable format. This format is experimental and its
+ internals are subject to change.
diff --git a/Documentation/technical/repository-version.txt b/Documentation/technical/repository-version.txt
index 27be3741e6..47281420fc 100644
--- a/Documentation/technical/repository-version.txt
+++ b/Documentation/technical/repository-version.txt
@@ -103,5 +103,6 @@ GIT_COMMON_DIR/worktrees/<id>/config.worktree)
==== `refStorage`
-Specifies the file format for the ref database. The only valid value
-is `files` (loose references with a packed-refs file).
+Specifies the file format for the ref database. The valid values are
+`files` (loose references with a packed-refs file) and `reftable` (see
+Documentation/technical/reftable.txt).