hook: show config scope in git hook list

Users running "git hook list" can see which hooks are configured but
have no way to tell at which config scope (local, global, system...)
each hook was defined.

Store the scope from ctx->kvi->scope in the single-pass config callback,
then carry it through the cache to the hook structs, so we can expose it
to users via the "git hook list --show-scope" flag, which mirrors the
existing git config --show-scope convention.

Without the flag the output is unchanged.

Example usage:
$ git hook list --show-scope pre-commit
linter (global)
no-leaks (local)
hook from hookdir

Traditional hooks from the hookdir are unaffected by --show-scope since
the config scope concept does not apply to them.

Suggested-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Adrian Ratiu <adrian.ratiu@collabora.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Adrian Ratiu
2026-03-09 02:54:15 +02:00
committed by Junio C Hamano
parent 2a99233083
commit dcd7ab7d2e
5 changed files with 60 additions and 8 deletions

View File

@@ -9,7 +9,7 @@ SYNOPSIS
--------
[verse]
'git hook' run [--ignore-missing] [--to-stdin=<path>] <hook-name> [-- <hook-args>]
'git hook' list [-z] <hook-name>
'git hook' list [-z] [--show-scope] <hook-name>
DESCRIPTION
-----------
@@ -113,7 +113,7 @@ Any positional arguments to the hook should be passed after a
mandatory `--` (or `--end-of-options`, see linkgit:gitcli[7]). See
linkgit:githooks[5] for arguments hooks might expect (if any).
list [-z]::
list [-z] [--show-scope]::
Print a list of hooks which will be run on `<hook-name>` event. If no
hooks are configured for that event, print a warning and return 1.
Use `-z` to terminate output lines with NUL instead of newlines.
@@ -134,6 +134,11 @@ OPTIONS
-z::
Terminate "list" output lines with NUL instead of newlines.
--show-scope::
For "list"; print the config scope (e.g. `local`, `global`, `system`)
in parentheses after the friendly name of each configured hook, to show
where it was defined. Traditional hooks from the hookdir are unaffected.
WRAPPERS
--------

View File

@@ -9,7 +9,7 @@
#define BUILTIN_HOOK_RUN_USAGE \
N_("git hook run [--ignore-missing] [--to-stdin=<path>] <hook-name> [-- <hook-args>]")
#define BUILTIN_HOOK_LIST_USAGE \
N_("git hook list [-z] <hook-name>")
N_("git hook list [-z] [--show-scope] <hook-name>")
static const char * const builtin_hook_usage[] = {
BUILTIN_HOOK_RUN_USAGE,
@@ -33,11 +33,14 @@ static int list(int argc, const char **argv, const char *prefix,
struct string_list_item *item;
const char *hookname = NULL;
int line_terminator = '\n';
int show_scope = 0;
int ret = 0;
struct option list_options[] = {
OPT_SET_INT('z', NULL, &line_terminator,
N_("use NUL as line terminator"), '\0'),
OPT_BOOL(0, "show-scope", &show_scope,
N_("show the config scope that defined each hook")),
OPT_END(),
};
@@ -70,7 +73,14 @@ static int list(int argc, const char **argv, const char *prefix,
printf("%s%c", _("hook from hookdir"), line_terminator);
break;
case HOOK_CONFIGURED:
printf("%s%c", h->u.configured.friendly_name, line_terminator);
if (show_scope)
printf("%s (%s)%c",
h->u.configured.friendly_name,
config_scope_name(h->u.configured.scope),
line_terminator);
else
printf("%s%c", h->u.configured.friendly_name,
line_terminator);
break;
default:
BUG("unknown hook kind");

24
hook.c
View File

@@ -114,11 +114,11 @@ static void list_hooks_add_default(struct repository *r, const char *hookname,
/*
* Cache entry stored as the .util pointer of string_list items inside the
* hook config cache. For now carries only the command for the hook. Next
* commits will add more data.
* hook config cache.
*/
struct hook_config_cache_entry {
char *command;
enum config_scope scope;
};
/*
@@ -135,7 +135,7 @@ struct hook_all_config_cb {
/* repo_config() callback that collects all hook.* configuration in one pass. */
static int hook_config_lookup_all(const char *key, const char *value,
const struct config_context *ctx UNUSED,
const struct config_context *ctx,
void *cb_data)
{
struct hook_all_config_cb *data = cb_data;
@@ -172,7 +172,19 @@ static int hook_config_lookup_all(const char *key, const char *value,
/* Re-insert if necessary to preserve last-seen order. */
unsorted_string_list_remove(hooks, hook_name, 0);
string_list_append(hooks, hook_name);
if (!ctx->kvi)
BUG("hook config callback called without key-value info");
/*
* Stash the config scope in the util pointer for
* later retrieval in build_hook_config_map(). This
* intermediate struct is transient and never leaves
* that function, so we pack the enum value into the
* pointer rather than heap-allocating a wrapper.
*/
string_list_append(hooks, hook_name)->util =
(void *)(uintptr_t)ctx->kvi->scope;
}
} else if (!strcmp(subkey, "command")) {
/* Store command overwriting the old value */
@@ -251,6 +263,8 @@ static void build_hook_config_map(struct repository *r,
for (size_t i = 0; i < hook_names->nr; i++) {
const char *hname = hook_names->items[i].string;
enum config_scope scope =
(enum config_scope)(uintptr_t)hook_names->items[i].util;
struct hook_config_cache_entry *entry;
char *command;
@@ -268,6 +282,7 @@ static void build_hook_config_map(struct repository *r,
/* util stores a cache entry; owned by the cache. */
CALLOC_ARRAY(entry, 1);
entry->command = xstrdup(command);
entry->scope = scope;
string_list_append(hooks, hname)->util = entry;
}
@@ -348,6 +363,7 @@ static void list_hooks_add_configured(struct repository *r,
hook->kind = HOOK_CONFIGURED;
hook->u.configured.friendly_name = xstrdup(friendly_name);
hook->u.configured.command = xstrdup(entry->command);
hook->u.configured.scope = entry->scope;
string_list_append(list, friendly_name)->util = hook;
}

2
hook.h
View File

@@ -1,5 +1,6 @@
#ifndef HOOK_H
#define HOOK_H
#include "config.h"
#include "strvec.h"
#include "run-command.h"
#include "string-list.h"
@@ -29,6 +30,7 @@ struct hook {
struct {
const char *friendly_name;
const char *command;
enum config_scope scope;
} configured;
} u;

View File

@@ -408,6 +408,25 @@ test_expect_success 'configured hooks run before hookdir hook' '
test_cmp expected actual
'
test_expect_success 'git hook list --show-scope shows config scope' '
test_config_global hook.global-hook.command "echo global" &&
test_config_global hook.global-hook.event test-hook --add &&
test_config hook.local-hook.command "echo local" &&
test_config hook.local-hook.event test-hook --add &&
cat >expected <<-\EOF &&
global-hook (global)
local-hook (local)
EOF
git hook list --show-scope test-hook >actual &&
test_cmp expected actual &&
# without --show-scope the scope must not appear
git hook list test-hook >actual &&
test_grep ! "(global)" actual &&
test_grep ! "(local)" actual
'
test_expect_success 'git hook run a hook with a bad shebang' '
test_when_finished "rm -rf bad-hooks" &&
mkdir bad-hooks &&