builtin/repo: rename repo_info() to cmd_repo_info()

Subcommand functions are often prefixed with `cmd_` to denote that they are an entrypoint. Rename repo_info() to cmd_repo_info() accordingly. Signed-off-by: Justin Tobler <jltobler@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Justin Tobler committed Oct 21, 2025 at 13:25 UTC 026ad6016070748a66ed9a977ad90efc08df2225
1 file changed +3 -3
builtin/repo.c
+3 -3
@@ -136,8 +136,8 @@ static int parse_format_cb(const struct option *opt,
136 return 0;
137 }
138
139 -static int repo_info(int argc, const char **argv, const char *prefix,
140 - struct repository *repo)
139 +static int cmd_repo_info(int argc, const char **argv, const char *prefix,
140 + struct repository *repo)
141 {
142 enum output_format format = FORMAT_KEYVALUE;
143 struct option options[] = {
@@ -161,7 +161,7 @@ int cmd_repo(int argc, const char **argv, const char *prefix,
161 {
162 parse_opt_subcommand_fn *fn = NULL;
163 struct option options[] = {
164 - OPT_SUBCOMMAND("info", &fn, repo_info),
164 + OPT_SUBCOMMAND("info", &fn, cmd_repo_info),
165 OPT_END()
166 };
167