[GSoC PATCH v5 3/5] repo: add field layout.bare
From: Lucas Seiki Oshiro <hidden>
Date: 2025-07-27 17:51:52
Subsystem:
documentation, the rest · Maintainers:
Jonathan Corbet, Linus Torvalds
This commit is part of the series that introduces the new subcommand git-repo-info. The flag --is-bare-repository from git-rev-parse is used for retrieving whether the current repository is bare. This way, it is used for querying repository metadata, fitting in the purpose of git-repo-info. Then, add a new field layout.bare to the git-repo-info subcommand containing that information. Helped-by: Phillip Wood [off-list ref] Helped-by: Junio C Hamano [off-list ref] Helped-by: Justin Tobler [off-list ref] Mentored-by: Karthik Nayak [off-list ref] Mentored-by: Patrick Steinhardt [off-list ref] Signed-off-by: Lucas Seiki Oshiro <redacted> --- Documentation/git-repo.adoc | 4 ++++ builtin/repo.c | 11 +++++++++++ t/t1900-repo.sh | 6 ++++++ 3 files changed, 21 insertions(+)
diff --git a/Documentation/git-repo.adoc b/Documentation/git-repo.adoc
index ac2578299f..d52f4666be 100644
--- a/Documentation/git-repo.adoc
+++ b/Documentation/git-repo.adoc@@ -33,6 +33,10 @@ categories: Reference-related data: * `format`: the reference storage format +`layout`:: +Information about the how the current repository is represented: +* `bare`: `true` if this is a bare repository, otherwise `false`. + SEE ALSO -------- linkgit:git-rev-parse[1]
diff --git a/builtin/repo.c b/builtin/repo.c
index 02d5821c77..2aba6a39c7 100644
--- a/builtin/repo.c
+++ b/builtin/repo.c@@ -1,4 +1,7 @@ +#define USE_THE_REPOSITORY_VARIABLE + #include "builtin.h" +#include "environment.h" #include "parse-options.h" #include "refs.h" #include "strbuf.h"
@@ -10,6 +13,13 @@ struct field { get_value_fn *get_value; }; +static int get_layout_bare(struct repository *repo UNUSED, struct strbuf *buf) +{ + strbuf_addstr(buf, + is_bare_repository() ? "true" : "false"); + return 0; +} + static int get_references_format(struct repository *repo, struct strbuf *buf) { strbuf_addstr(buf,
@@ -19,6 +29,7 @@ static int get_references_format(struct repository *repo, struct strbuf *buf) /* repo_info_fields keys should be in lexicographical order */ static const struct field repo_info_fields[] = { + { "layout.bare", get_layout_bare }, { "references.format", get_references_format }, };
diff --git a/t/t1900-repo.sh b/t/t1900-repo.sh
index cc54b0644d..7304629cb2 100755
--- a/t/t1900-repo.sh
+++ b/t/t1900-repo.sh@@ -36,6 +36,12 @@ test_repo_info 'ref format files is retrieved correctly' ' test_repo_info 'ref format reftable is retrieved correctly' ' git init --ref-format=reftable repo' 'references.format' 'reftable' +test_repo_info 'bare repository = false is retrieved correctly' ' + git init repo' 'layout.bare' 'false' + +test_repo_info 'bare repository = true is retrieved correctly' ' + git init --bare repo' 'layout.bare' 'true' + test_expect_success 'git-repo-info aborts if an invalid key is requested' ' test_when_finished "rm -rf expected err" && echo "error: key '\'foo\'' not found" >expected &&
--
2.39.5 (Apple Git-154)