diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-02-12 10:09:19 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-02-12 10:09:19 -0800 |
| commit | c684b582bccde967473fd1aaff38a0becceec3d9 (patch) | |
| tree | b95e62bf580cb3c6756e52c88c04275804b449a8 /repository.h | |
| parent | c875e0b8e036c12cfbf6531962108a063c7a821c (diff) | |
| parent | 8a0bebdeaec60623c8a791b197d574bdd031a452 (diff) | |
| download | git-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 'repository.h')
| -rw-r--r-- | repository.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/repository.h b/repository.h index 7a250a6605..1645cef518 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; |
