]> git.ipfire.org Git - thirdparty/git.git/commitdiff
hook: include hooks from the config
authorAdrian Ratiu <adrian.ratiu@collabora.com>
Wed, 18 Feb 2026 22:23:48 +0000 (00:23 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 19 Feb 2026 21:23:41 +0000 (13:23 -0800)
Teach the hook.[hc] library to parse configs to populate the list of
hooks to run for a given event.

Multiple commands can be specified for a given hook by providing
"hook.<friendly-name>.command = <path-to-hook>" and
"hook.<friendly-name>.event = <hook-event>" lines.

Hooks will be started in config order of the "hook.<name>.event"
lines and will be run sequentially (.jobs == 1) like before.
Running the hooks in parallel will be enabled in a future patch.

The "traditional" hook from the hookdir is run last, if present.

A strmap cache is added to struct repository to avoid re-reading
the configs on each rook run. This is useful for hooks like the
ref-transaction which gets executed multiple times per process.

Examples:

  $ git config --get-regexp "^hook\."
  hook.bar.command=~/bar.sh
  hook.bar.event=pre-commit

  # Will run ~/bar.sh, then .git/hooks/pre-commit
  $ git hook run pre-commit

Signed-off-by: Emily Shaffer <emilyshaffer@google.com>
Signed-off-by: Adrian Ratiu <adrian.ratiu@collabora.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config/hook.adoc [new file with mode: 0644]
Documentation/git-hook.adoc
builtin/hook.c
hook.c
hook.h
repository.c
repository.h
t/t1800-hook.sh

diff --git a/Documentation/config/hook.adoc b/Documentation/config/hook.adoc
new file mode 100644 (file)
index 0000000..9faafe3
--- /dev/null
@@ -0,0 +1,15 @@
+hook.<name>.command::
+       The command to execute for `hook.<name>`. `<name>` is a unique
+       "friendly" name that identifies this hook. (The hook events that
+       trigger the command are configured with `hook.<name>.event`.) The
+       value can be an executable path or a shell oneliner. If more than
+       one value is specified for the same `<name>`, only the last value
+       parsed is used. See linkgit:git-hook[1].
+
+hook.<name>.event::
+       The hook events that trigger `hook.<name>`. The value is the name
+       of a hook event, like "pre-commit" or "update". (See
+       linkgit:githooks[5] for a complete list of hook events.) On the
+       specified event, the associated `hook.<name>.command` is executed.
+       This is a multi-valued key. To run `hook.<name>` on multiple
+       events, specify the key more than once. See linkgit:git-hook[1].
index eb0ffcb8a99f5b35024818839daf87251799b732..7e4259e4f042aa14143eca6ca28412a12cfd8d65 100644 (file)
@@ -17,12 +17,96 @@ DESCRIPTION
 A command interface for running git hooks (see linkgit:githooks[5]),
 for use by other scripted git commands.
 
+This command parses the default configuration files for sets of configs like
+so:
+
+  [hook "linter"]
+    event = pre-commit
+    command = ~/bin/linter --cpp20
+
+In this example, `[hook "linter"]` represents one script - `~/bin/linter
+--cpp20` - which can be shared by many repos, and even by many hook events, if
+appropriate.
+
+To add an unrelated hook which runs on a different event, for example a
+spell-checker for your commit messages, you would write a configuration like so:
+
+  [hook "linter"]
+    event = pre-commit
+    command = ~/bin/linter --cpp20
+  [hook "spellcheck"]
+    event = commit-msg
+    command = ~/bin/spellchecker
+
+With this config, when you run 'git commit', first `~/bin/linter --cpp20` will
+have a chance to check your files to be committed (during the `pre-commit` hook
+event`), and then `~/bin/spellchecker` will have a chance to check your commit
+message (during the `commit-msg` hook event).
+
+Commands are run in the order Git encounters their associated
+`hook.<name>.event` configs during the configuration parse (see
+linkgit:git-config[1]). Although multiple `hook.linter.event` configs can be
+added, only one `hook.linter.command` event is valid - Git uses "last-one-wins"
+to determine which command to run.
+
+So if you wanted your linter to run when you commit as well as when you push,
+you would configure it like so:
+
+  [hook "linter"]
+    event = pre-commit
+    event = pre-push
+    command = ~/bin/linter --cpp20
+
+With this config, `~/bin/linter --cpp20` would be run by Git before a commit is
+generated (during `pre-commit`) as well as before a push is performed (during
+`pre-push`).
+
+And if you wanted to run your linter as well as a secret-leak detector during
+only the "pre-commit" hook event, you would configure it instead like so:
+
+  [hook "linter"]
+    event = pre-commit
+    command = ~/bin/linter --cpp20
+  [hook "no-leaks"]
+    event = pre-commit
+    command = ~/bin/leak-detector
+
+With this config, before a commit is generated (during `pre-commit`), Git would
+first start `~/bin/linter --cpp20` and second start `~/bin/leak-detector`. It
+would evaluate the output of each when deciding whether to proceed with the
+commit.
+
+For a full list of hook events which you can set your `hook.<name>.event` to,
+and how hooks are invoked during those events, see linkgit:githooks[5].
+
+Git will ignore any `hook.<name>.event` that specifies an event it doesn't
+recognize. This is intended so that tools which wrap Git can use the hook
+infrastructure to run their own hooks; see "WRAPPERS" for more guidance.
+
+In general, when instructions suggest adding a script to
+`.git/hooks/<hook-event>`, you can specify it in the config instead by running:
+
+----
+git config set hook.<some-name>.command <path-to-script>
+git config set --append hook.<some-name>.event <hook-event>
+----
+
+This way you can share the script between multiple repos. That is, `cp
+~/my-script.sh ~/project/.git/hooks/pre-commit` would become:
+
+----
+git config set hook.my-script.command ~/my-script.sh
+git config set --append hook.my-script.event pre-commit
+----
+
 SUBCOMMANDS
 -----------
 
 run::
-       Run the `<hook-name>` hook. See linkgit:githooks[5] for
-       supported hook names.
+       Runs hooks configured for `<hook-name>`, in the order they are
+       discovered during the config parse. The default `<hook-name>` from
+       the hookdir is run last. See linkgit:githooks[5] for supported
+       hook names.
 +
 
 Any positional arguments to the hook should be passed after a
@@ -46,6 +130,46 @@ OPTIONS
        tools that want to do a blind one-shot run of a hook that may
        or may not be present.
 
+WRAPPERS
+--------
+
+`git hook run` has been designed to make it easy for tools which wrap Git to
+configure and execute hooks using the Git hook infrastructure. It is possible to
+provide arguments and stdin via the command line, as well as specifying parallel
+or series execution if the user has provided multiple hooks.
+
+Assuming your wrapper wants to support a hook named "mywrapper-start-tests", you
+can have your users specify their hooks like so:
+
+  [hook "setup-test-dashboard"]
+    event = mywrapper-start-tests
+    command = ~/mywrapper/setup-dashboard.py --tap
+
+Then, in your 'mywrapper' tool, you can invoke any users' configured hooks by
+running:
+
+----
+git hook run mywrapper-start-tests \
+  # providing something to stdin
+  --stdin some-tempfile-123 \
+  # execute hooks in serial
+  # plus some arguments of your own...
+  -- \
+  --testname bar \
+  baz
+----
+
+Take care to name your wrapper's hook events in a way which is unlikely to
+overlap with Git's native hooks (see linkgit:githooks[5]) - a hook event named
+`mywrappertool-validate-commit` is much less likely to be added to native Git
+than a hook event named `validate-commit`. If Git begins to use a hook event
+named the same thing as your wrapper hook, it may invoke your users' hooks in
+unintended and unsupported ways.
+
+CONFIGURATION
+-------------
+include::config/hook.adoc[]
+
 SEE ALSO
 --------
 linkgit:githooks[5]
index 51660c4941f01bd05acfd1c40101d3cf7c514fb2..e151bb2cd1d68468a23add9e0f1954740531f5d1 100644 (file)
@@ -68,6 +68,9 @@ static int list(int argc, const char **argv, const char *prefix,
                case HOOK_TRADITIONAL:
                        printf("%s\n", _("hook from hookdir"));
                        break;
+               case HOOK_CONFIGURED:
+                       printf("%s\n", h->u.configured.friendly_name);
+                       break;
                default:
                        BUG("unknown hook kind");
                }
diff --git a/hook.c b/hook.c
index 979a97a538f9c08d7b39a6a30c05715fe99922b2..8a9b405f76c94dba8e110728974d0c8ba12e9047 100644 (file)
--- a/hook.c
+++ b/hook.c
@@ -4,9 +4,11 @@
 #include "gettext.h"
 #include "hook.h"
 #include "path.h"
+#include "parse.h"
 #include "run-command.h"
 #include "config.h"
 #include "strbuf.h"
+#include "strmap.h"
 #include "environment.h"
 #include "setup.h"
 
@@ -54,6 +56,10 @@ static void hook_clear(struct hook *h, cb_data_free_fn cb_data_free)
 
        if (h->kind == HOOK_TRADITIONAL)
                free((void *)h->u.traditional.path);
+       else if (h->kind == HOOK_CONFIGURED) {
+               free((void *)h->u.configured.friendly_name);
+               free((void *)h->u.configured.command);
+       }
 
        if (cb_data_free)
                cb_data_free(h->feed_pipe_cb_data);
@@ -101,6 +107,187 @@ static void list_hooks_add_default(struct repository *r, const char *hookname,
        string_list_append(hook_list, hook_path)->util = h;
 }
 
+static void unsorted_string_list_remove(struct string_list *list,
+                                       const char *str)
+{
+       struct string_list_item *item = unsorted_string_list_lookup(list, str);
+       if (item)
+               unsorted_string_list_delete_item(list, item - list->items, 0);
+}
+
+/*
+ * Callback struct to collect all hook.* keys in a single config pass.
+ * commands: friendly-name to command map.
+ * event_hooks: event-name to list of friendly-names map.
+ * disabled_hooks: set of friendly-names with hook.name.enabled = false.
+ */
+struct hook_all_config_cb {
+       struct strmap commands;
+       struct strmap event_hooks;
+       struct string_list disabled_hooks;
+};
+
+/* 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,
+                                 void *cb_data)
+{
+       struct hook_all_config_cb *data = cb_data;
+       const char *name, *subkey;
+       char *hook_name;
+       size_t name_len = 0;
+
+       if (parse_config_key(key, "hook", &name, &name_len, &subkey))
+               return 0;
+
+       if (!value)
+               return config_error_nonbool(key);
+
+       /* Extract name, ensuring it is null-terminated. */
+       hook_name = xmemdupz(name, name_len);
+
+       if (!strcmp(subkey, "event")) {
+               struct string_list *hooks =
+                       strmap_get(&data->event_hooks, value);
+
+               if (!hooks) {
+                       hooks = xcalloc(1, sizeof(*hooks));
+                       string_list_init_dup(hooks);
+                       strmap_put(&data->event_hooks, value, hooks);
+               }
+
+               /* Re-insert if necessary to preserve last-seen order. */
+               unsorted_string_list_remove(hooks, hook_name);
+               string_list_append(hooks, hook_name);
+       } else if (!strcmp(subkey, "command")) {
+               /* Store command overwriting the old value */
+               char *old = strmap_put(&data->commands, hook_name,
+                                      xstrdup(value));
+               free(old);
+       }
+
+       free(hook_name);
+       return 0;
+}
+
+/*
+ * The hook config cache maps each hook event name to a string_list where
+ * every item's string is the hook's friendly-name and its util pointer is
+ * the corresponding command string. Both strings are owned by the map.
+ *
+ * Disabled hooks and hooks missing a command are already filtered out at
+ * parse time, so callers can iterate the list directly.
+ */
+void hook_cache_clear(struct strmap *cache)
+{
+       struct hashmap_iter iter;
+       struct strmap_entry *e;
+
+       strmap_for_each_entry(cache, &iter, e) {
+               struct string_list *hooks = e->value;
+               string_list_clear(hooks, 1); /* free util (command) pointers */
+               free(hooks);
+       }
+       strmap_clear(cache, 0);
+}
+
+/* Populate `cache` with the complete hook configuration */
+static void build_hook_config_map(struct repository *r, struct strmap *cache)
+{
+       struct hook_all_config_cb cb_data;
+       struct hashmap_iter iter;
+       struct strmap_entry *e;
+
+       strmap_init(&cb_data.commands);
+       strmap_init(&cb_data.event_hooks);
+       string_list_init_dup(&cb_data.disabled_hooks);
+
+       /* Parse all configs in one run. */
+       repo_config(r, hook_config_lookup_all, &cb_data);
+
+       /* Construct the cache from parsed configs. */
+       strmap_for_each_entry(&cb_data.event_hooks, &iter, e) {
+               struct string_list *hook_names = e->value;
+               struct string_list *hooks = xcalloc(1, sizeof(*hooks));
+
+               string_list_init_dup(hooks);
+
+               for (size_t i = 0; i < hook_names->nr; i++) {
+                       const char *hname = hook_names->items[i].string;
+                       char *command;
+
+                       command = strmap_get(&cb_data.commands, hname);
+                       if (!command)
+                               die(_("'hook.%s.command' must be configured or "
+                                     "'hook.%s.event' must be removed;"
+                                     " aborting."), hname, hname);
+
+                       /* util stores the command; owned by the cache. */
+                       string_list_append(hooks, hname)->util =
+                               xstrdup(command);
+               }
+
+               strmap_put(cache, e->key, hooks);
+       }
+
+       strmap_clear(&cb_data.commands, 1);
+       string_list_clear(&cb_data.disabled_hooks, 0);
+       strmap_for_each_entry(&cb_data.event_hooks, &iter, e) {
+               string_list_clear(e->value, 0);
+               free(e->value);
+       }
+       strmap_clear(&cb_data.event_hooks, 0);
+}
+
+/* Return the hook config map for `r`, populating it first if needed. */
+static struct strmap *get_hook_config_cache(struct repository *r)
+{
+       struct strmap *cache = NULL;
+
+       if (r) {
+               /*
+                * For in-repo calls, the map is stored in r->hook_config_cache,
+                * so repeated invocations don't parse the configs, so allocate
+                * it just once on the first call.
+                */
+               if (!r->hook_config_cache) {
+                       r->hook_config_cache = xcalloc(1, sizeof(*cache));
+                       strmap_init(r->hook_config_cache);
+                       build_hook_config_map(r, r->hook_config_cache);
+               }
+               cache = r->hook_config_cache;
+       }
+
+       return cache;
+}
+
+static void list_hooks_add_configured(struct repository *r,
+                                     const char *hookname,
+                                     struct string_list *list,
+                                     struct run_hooks_opt *options)
+{
+       struct strmap *cache = get_hook_config_cache(r);
+       struct string_list *configured_hooks = strmap_get(cache, hookname);
+
+       /* Iterate through configured hooks and initialize internal states */
+       for (size_t i = 0; configured_hooks && i < configured_hooks->nr; i++) {
+               const char *friendly_name = configured_hooks->items[i].string;
+               const char *command = configured_hooks->items[i].util;
+               struct hook *hook = xcalloc(1, sizeof(struct hook));
+
+               if (options && options->feed_pipe_cb_data_alloc)
+                       hook->feed_pipe_cb_data =
+                               options->feed_pipe_cb_data_alloc(
+                                       options->feed_pipe_ctx);
+
+               hook->kind = HOOK_CONFIGURED;
+               hook->u.configured.friendly_name = xstrdup(friendly_name);
+               hook->u.configured.command = xstrdup(command);
+
+               string_list_append(list, friendly_name)->util = hook;
+       }
+}
+
 struct string_list *list_hooks(struct repository *r, const char *hookname,
                               struct run_hooks_opt *options)
 {
@@ -112,6 +299,9 @@ struct string_list *list_hooks(struct repository *r, const char *hookname,
        hook_head = xmalloc(sizeof(struct string_list));
        string_list_init_dup(hook_head);
 
+       /* Add hooks from the config, e.g. hook.myhook.event = pre-commit */
+       list_hooks_add_configured(r, hookname, hook_head, options);
+
        /* Add the default "traditional" hooks from hookdir. */
        list_hooks_add_default(r, hookname, hook_head, options);
 
@@ -164,8 +354,13 @@ static int pick_next_hook(struct child_process *cp,
        cp->dir = hook_cb->options->dir;
 
        /* Add hook exec paths or commands */
-       if (h->kind == HOOK_TRADITIONAL)
+       if (h->kind == HOOK_TRADITIONAL) {
                strvec_push(&cp->args, h->u.traditional.path);
+       } else if (h->kind == HOOK_CONFIGURED) {
+               /* to enable oneliners, let config-specified hooks run in shell. */
+               cp->use_shell = true;
+               strvec_push(&cp->args, h->u.configured.command);
+       }
 
        if (!cp->args.nr)
                BUG("hook must have at least one command or exec path");
diff --git a/hook.h b/hook.h
index fea221f87d3452c68de0015361c4d5abb5e70733..e949f5d4888cd45bb09c063d707a83edf9678714 100644 (file)
--- a/hook.h
+++ b/hook.h
@@ -3,6 +3,7 @@
 #include "strvec.h"
 #include "run-command.h"
 #include "string-list.h"
+#include "strmap.h"
 
 struct repository;
 
@@ -10,17 +11,22 @@ struct repository;
  * Represents a hook command to be run.
  * Hooks can be:
  * 1. "traditional" (found in the hooks directory)
- * 2. "configured" (defined in Git's configuration, not yet implemented).
+ * 2. "configured" (defined in Git's configuration via hook.<name>.event).
  * The 'kind' field determines which part of the union 'u' is valid.
  */
 struct hook {
        enum {
                HOOK_TRADITIONAL,
+               HOOK_CONFIGURED,
        } kind;
        union {
                struct {
                        const char *path;
                } traditional;
+               struct {
+                       const char *friendly_name;
+                       const char *command;
+               } configured;
        } u;
 
        /**
@@ -185,6 +191,12 @@ struct string_list *list_hooks(struct repository *r, const char *hookname,
  */
 void hook_list_clear(struct string_list *hooks, cb_data_free_fn cb_data_free);
 
+/**
+ * Frees the hook configuration cache stored in `struct repository`.
+ * Called by repo_clear().
+ */
+void hook_cache_clear(struct strmap *cache);
+
 /**
  * Returns the path to the hook file, or NULL if the hook is missing
  * or disabled. Note that this points to static storage that will be
index c7e75215ac2ab215c7bac325d2623373e6e2da0d..2518d66975cc926dd511f7c78a3ac15b96d49245 100644 (file)
@@ -1,6 +1,7 @@
 #include "git-compat-util.h"
 #include "abspath.h"
 #include "repository.h"
+#include "hook.h"
 #include "odb.h"
 #include "config.h"
 #include "object.h"
@@ -393,6 +394,11 @@ void repo_clear(struct repository *repo)
                FREE_AND_NULL(repo->index);
        }
 
+       if (repo->hook_config_cache) {
+               hook_cache_clear(repo->hook_config_cache);
+               FREE_AND_NULL(repo->hook_config_cache);
+       }
+
        if (repo->promisor_remote_config) {
                promisor_remote_clear(repo->promisor_remote_config);
                FREE_AND_NULL(repo->promisor_remote_config);
index 6063c4b846d031d657827f8b16d65af8c09e5b29..df91338259c1928cb9420596daa1ce7530c19a5b 100644 (file)
@@ -157,6 +157,12 @@ struct repository {
        /* True if commit-graph has been disabled within this process. */
        int commit_graph_disabled;
 
+       /*
+        * Lazily-populated cache mapping hook event names to configured hooks.
+        * NULL until first hook use.
+        */
+       struct strmap *hook_config_cache;
+
        /* Configurations related to promisor remotes. */
        char *repository_format_partial_clone;
        struct promisor_remote_config *promisor_remote_config;
index 3ec11f124910c8c1f2869dabee82284b7840168e..f1048a5119db8db3546f9abde5dd6abb8842792c 100755 (executable)
@@ -1,14 +1,31 @@
 #!/bin/sh
 
-test_description='git-hook command'
+test_description='git-hook command and config-managed multihooks'
 
 . ./test-lib.sh
 . "$TEST_DIRECTORY"/lib-terminal.sh
 
+setup_hooks () {
+       test_config hook.ghi.command "/path/ghi"
+       test_config hook.ghi.event pre-commit --add
+       test_config hook.ghi.event test-hook --add
+       test_config_global hook.def.command "/path/def"
+       test_config_global hook.def.event pre-commit --add
+}
+
+setup_hookdir () {
+       mkdir .git/hooks
+       write_script .git/hooks/pre-commit <<-EOF
+       echo \"Legacy Hook\"
+       EOF
+       test_when_finished rm -rf .git/hooks
+}
+
 test_expect_success 'git hook usage' '
        test_expect_code 129 git hook &&
        test_expect_code 129 git hook run &&
        test_expect_code 129 git hook run -h &&
+       test_expect_code 129 git hook list -h &&
        test_expect_code 129 git hook run --unknown 2>err &&
        test_expect_code 129 git hook list &&
        test_expect_code 129 git hook list -h &&
@@ -35,6 +52,15 @@ test_expect_success 'git hook list: traditional hook from hookdir' '
        test_cmp expect actual
 '
 
+test_expect_success 'git hook list: configured hook' '
+       test_config hook.myhook.command "echo Hello" &&
+       test_config hook.myhook.event test-hook --add &&
+
+       echo "myhook" >expect &&
+       git hook list test-hook >actual &&
+       test_cmp expect actual
+'
+
 test_expect_success 'git hook run: nonexistent hook' '
        cat >stderr.expect <<-\EOF &&
        error: cannot find a hook named test-hook
@@ -172,6 +198,126 @@ test_expect_success TTY 'git commit: stdout and stderr are connected to a TTY' '
        test_hook_tty commit -m"B.new"
 '
 
+test_expect_success 'git hook list orders by config order' '
+       setup_hooks &&
+
+       cat >expected <<-\EOF &&
+       def
+       ghi
+       EOF
+
+       git hook list pre-commit >actual &&
+       test_cmp expected actual
+'
+
+test_expect_success 'git hook list reorders on duplicate event declarations' '
+       setup_hooks &&
+
+       # 'def' is usually configured globally; move it to the end by
+       # configuring it locally.
+       test_config hook.def.event "pre-commit" --add &&
+
+       cat >expected <<-\EOF &&
+       ghi
+       def
+       EOF
+
+       git hook list pre-commit >actual &&
+       test_cmp expected actual
+'
+
+test_expect_success 'hook can be configured for multiple events' '
+       setup_hooks &&
+
+       # 'ghi' should be included in both 'pre-commit' and 'test-hook'
+       git hook list pre-commit >actual &&
+       grep "ghi" actual &&
+       git hook list test-hook >actual &&
+       grep "ghi" actual
+'
+
+test_expect_success 'git hook list shows hooks from the hookdir' '
+       setup_hookdir &&
+
+       cat >expected <<-\EOF &&
+       hook from hookdir
+       EOF
+
+       git hook list pre-commit >actual &&
+       test_cmp expected actual
+'
+
+test_expect_success 'inline hook definitions execute oneliners' '
+       test_config hook.oneliner.event "pre-commit" &&
+       test_config hook.oneliner.command "echo \"Hello World\"" &&
+
+       echo "Hello World" >expected &&
+
+       # hooks are run with stdout_to_stderr = 1
+       git hook run pre-commit 2>actual &&
+       test_cmp expected actual
+'
+
+test_expect_success 'inline hook definitions resolve paths' '
+       write_script sample-hook.sh <<-\EOF &&
+       echo \"Sample Hook\"
+       EOF
+
+       test_when_finished "rm sample-hook.sh" &&
+
+       test_config hook.sample-hook.event pre-commit &&
+       test_config hook.sample-hook.command "\"$(pwd)/sample-hook.sh\"" &&
+
+       echo \"Sample Hook\" >expected &&
+
+       # hooks are run with stdout_to_stderr = 1
+       git hook run pre-commit 2>actual &&
+       test_cmp expected actual
+'
+
+test_expect_success 'hookdir hook included in git hook run' '
+       setup_hookdir &&
+
+       echo \"Legacy Hook\" >expected &&
+
+       # hooks are run with stdout_to_stderr = 1
+       git hook run pre-commit 2>actual &&
+       test_cmp expected actual
+'
+
+test_expect_success 'stdin to multiple hooks' '
+       test_config hook.stdin-a.event "test-hook" &&
+       test_config hook.stdin-a.command "xargs -P1 -I% echo a%" &&
+       test_config hook.stdin-b.event "test-hook" &&
+       test_config hook.stdin-b.command "xargs -P1 -I% echo b%" &&
+
+       cat >input <<-\EOF &&
+       1
+       2
+       3
+       EOF
+
+       cat >expected <<-\EOF &&
+       a1
+       a2
+       a3
+       b1
+       b2
+       b3
+       EOF
+
+       git hook run --to-stdin=input test-hook 2>actual &&
+       test_cmp expected actual
+'
+
+test_expect_success 'rejects hooks with no commands configured' '
+       test_config hook.broken.event "test-hook" &&
+       test_must_fail git hook list test-hook 2>actual &&
+       test_grep "hook.broken.command" actual &&
+       test_must_fail git hook run test-hook 2>actual &&
+       test_grep "hook.broken.command" actual
+'
+
 test_expect_success 'git hook run a hook with a bad shebang' '
        test_when_finished "rm -rf bad-hooks" &&
        mkdir bad-hooks &&
@@ -189,6 +335,7 @@ test_expect_success 'git hook run a hook with a bad shebang' '
 '
 
 test_expect_success 'stdin to hooks' '
+       mkdir -p .git/hooks &&
        write_script .git/hooks/test-hook <<-\EOF &&
        echo BEGIN stdin
        cat