* [PATCH] repo-info: add paths.git_dir field
@ 2026-03-06 16:18 jayesh0104
0 siblings, 0 replies; only message in thread
From: jayesh0104 @ 2026-03-06 16:18 UTC (permalink / raw)
To: git; +Cc: jayesh0104
Expose the repository's Git directory path through `git repo info`.
This value is currently available via:
git rev-parse --git-dir
Adding it to `git repo info` allows scripts to retrieve it
through a structured interface.
Signed-off-by: Jayesh Daga <jayeshdaga99@gmail.com>
---
builtin/repo.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/builtin/repo.c b/builtin/repo.c
index f943be7451..7535192878 100644
--- a/builtin/repo.c
+++ b/builtin/repo.c
@@ -61,12 +61,17 @@ static int get_references_format(struct repository *repo, struct strbuf *buf)
ref_storage_format_to_name(repo->ref_storage_format));
return 0;
}
-
+static int get_paths_git_dir(struct repository *repo, struct strbuf *buf)
+{
+ strbuf_addstr(buf, repo_get_git_dir(repo));
+ return 0;
+}
/* repo_info_field keys must be in lexicographical order */
static const struct repo_info_field repo_info_field[] = {
{ "layout.bare", get_layout_bare },
{ "layout.shallow", get_layout_shallow },
{ "object.format", get_object_format },
+ { "paths.git_dir", get_paths_git_dir },
{ "references.format", get_references_format },
};
--
2.43.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-03-06 16:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-06 16:18 [PATCH] repo-info: add paths.git_dir field jayesh0104
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox