From: Adrian Ratiu <adrian.ratiu@collabora.com>
To: git@vger.kernel.org
Cc: Jeff King <peff@peff.net>,
Emily Shaffer <emilyshaffer@google.com>,
Junio C Hamano <gitster@pobox.com>,
Patrick Steinhardt <ps@pks.im>,
Josh Steadmon <steadmon@google.com>,
Kristoffer Haugsbakk <kristofferhaugsbakk@fastmail.com>,
"brian m . carlson" <sandals@crustytoothpaste.net>,
Adrian Ratiu <adrian.ratiu@collabora.com>
Subject: [PATCH v3 0/9] Run hooks in parallel
Date: Mon, 9 Mar 2026 15:37:30 +0200 [thread overview]
Message-ID: <20260309133739.294555-1-adrian.ratiu@collabora.com> (raw)
In-Reply-To: <20260204173328.1601807-1-adrian.ratiu@collabora.com>
Hello everyone,
This series enables running hook commands in parallel and is based on
the latest config hooks cleanup series [1].
v3 is just a small rebase re-roll to fix conflicts and drop a commit which
is now part of the base series. The logic in unchanged since v2.
Branch pushed to GitHub: [2]
Successful CI run: [3]
Many thanks to all who contributed to this effort up to now, including
Emily, AEvar, Junio, Patrick, Phillip, Brian, Peff and many others.
Thank you,
Adrian
1: https://lore.kernel.org/git/20260309005416.2760030-1-adrian.ratiu@collabora.com/T/#m0b740e28d4fd06104777a5ceb645d3205450b9c9
2: https://github.com/10ne1/git/tree/dev/aratiu/parallel-hooks-v3
3: https://github.com/10ne1/git/actions/runs/22854112520
Changes in v3:
* Rebased on the new config cleanup series, fixed minor conflicts (Adrian)
* Dropped refactor commit which is now part of the base series (Adrian)
* Simplified an entry->parallel asignment to remove shorthand if (Adrian)
Range-diff v2 -> v3:
1: f28b0270f9 = 1: 6686d92867 repository: fix repo_init() memleak due to missing _clear()
2: c7cc106224 = 2: 61250bdd91 config: add a repo_config_get_uint() helper
3: 2fe5aa34d6 < -: ---------- hook: refactor hook_config_cache from strmap to named struct
4: 23853aa170 ! 3: 2c49e2a523 hook: parse the hook.jobs config
@@ Commit message
Signed-off-by: Adrian Ratiu <adrian.ratiu@collabora.com>
## Documentation/config/hook.adoc ##
-@@ Documentation/config/hook.adoc: hook.<name>.enabled::
+@@ Documentation/config/hook.adoc: hook.<friendly-name>.enabled::
configuration. This is particularly useful when a hook is defined
in a system or global config file and needs to be disabled for a
specific repository. See linkgit:git-hook[1].
@@ hook.c
@@ hook.c: struct hook_config_cache_entry {
* 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.
+ * disabled_hooks: set of friendly-names with hook.<friendly-name>.enabled = false.
+ * jobs: value of the global hook.jobs key. Defaults to 0 if unset.
*/
struct hook_all_config_cb {
@@ hook.c: static void build_hook_config_map(struct repository *r,
strmap_for_each_entry(&cb_data.event_hooks, &iter, e) {
## hook.h ##
-@@ hook.h: void hook_list_clear(struct string_list *hooks, cb_data_free_fn cb_data_free);
+@@ hook.h: void hook_free(void *p, const char *str UNUSED);
*/
struct hook_config_cache {
struct strmap hooks; /* maps event name -> string_list of hooks */
5: 71380942dc ! 4: 3c206fac62 hook: allow parallel hook execution
@@ Commit message
Signed-off-by: Adrian Ratiu <adrian.ratiu@collabora.com>
## Documentation/config/hook.adoc ##
-@@ Documentation/config/hook.adoc: hook.<name>.enabled::
+@@ Documentation/config/hook.adoc: hook.<friendly-name>.enabled::
in a system or global config file and needs to be disabled for a
specific repository. See linkgit:git-hook[1].
@@ Documentation/config/hook.adoc: hook.<name>.enabled::
+`hook.<name>.parallel` set to `true`.
## hook.c ##
-@@ hook.c: static void unsorted_string_list_remove(struct string_list *list,
-
- /*
- * 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. Carries both the resolved command and the parallel flag.
- */
- struct hook_config_cache_entry {
+@@ hook.c: struct hook_config_cache_entry {
char *command;
+ enum config_scope scope;
+ int disabled;
+ unsigned int parallel:1;
};
@@ hook.c: static void unsorted_string_list_remove(struct string_list *list,
@@ hook.c: struct hook_config_cache_entry {
* 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.
+ * disabled_hooks: set of friendly-names with hook.<friendly-name>.enabled = false.
+ * parallel_hooks: friendly-name to parallel flag.
* jobs: value of the global hook.jobs key. Defaults to 0 if unset.
*/
@@ hook.c: static void build_hook_config_map(struct repository *r,
/* Parse all configs in one run, capturing hook.* including hook.jobs. */
repo_config(r, hook_config_lookup_all, &cb_data);
@@ hook.c: 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;
+ void *par = strmap_get(&cb_data.parallel_hooks, hname);
char *command;
- /* filter out disabled hooks */
+ int is_disabled =
@@ hook.c: 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->parallel = par ? (int)(uintptr_t)par : 0;
+ entry->command = command ? xstrdup(command) : NULL;
+ entry->scope = scope;
+ entry->disabled = is_disabled;
++ entry->parallel = (int)(uintptr_t)par;
string_list_append(hooks, hname)->util = entry;
}
@@ hook.c: static void build_hook_config_map(struct repository *r,
strmap_for_each_entry(&cb_data.event_hooks, &iter, e) {
string_list_clear(e->value, 0);
@@ hook.c: 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);
+ entry->command ? xstrdup(entry->command) : NULL;
+ hook->u.configured.scope = entry->scope;
+ hook->u.configured.disabled = entry->disabled;
+ hook->parallel = entry->parallel;
string_list_append(list, friendly_name)->util = hook;
@@ hook.h: struct run_hooks_opt
unsigned int jobs;
@@ hook.h: struct run_hooks_opt
- cb_data_free_fn feed_pipe_cb_data_free;
+ hook_data_free_fn feed_pipe_cb_data_free;
};
+/**
6: 820064f1c9 ! 5: 2385cb3bc8 hook: mark non-parallelizable hooks
@@ builtin/checkout.c: static void branch_info_release(struct branch_info *info)
static int update_some(const struct object_id *oid, struct strbuf *base,
## builtin/clone.c ##
-@@ builtin/clone.c: static int checkout(int submodule_progress, int filter_submodules,
+@@ builtin/clone.c: static int checkout(int submodule_progress,
struct tree *tree;
struct tree_desc t;
int err = 0;
@@ builtin/clone.c: static int checkout(int submodule_progress, int filter_submodul
if (option_no_checkout)
return 0;
-@@ builtin/clone.c: static int checkout(int submodule_progress, int filter_submodules,
+@@ builtin/clone.c: static int checkout(int submodule_progress,
if (write_locked_index(the_repository->index, &lock_file, COMMIT_LOCK))
die(_("unable to write new index file"));
7: b328f3451f ! 6: c4f92834a7 hook: add -j/--jobs option to git hook run
@@ Documentation/git-hook.adoc: git-hook - Run git hooks
-'git hook' run [--ignore-missing] [--to-stdin=<path>] <hook-name> [-- <hook-args>]
+'git hook' run [--ignore-missing] [--to-stdin=<path>] [(-j|--jobs) <n>]
+ <hook-name> [-- <hook-args>]
- 'git hook' list [-z] <hook-name>
+ 'git hook' list [-z] [--show-scope] <hook-name>
DESCRIPTION
@@ Documentation/git-hook.adoc: OPTIONS
- -z::
- Terminate "list" output lines with NUL instead of newlines.
+ in parentheses after the friendly name of each configured hook, to show
+ where it was defined. Traditional hooks from the hookdir are unaffected.
+-j::
+--jobs::
@@ Documentation/git-hook.adoc: running:
## builtin/hook.c ##
@@
- #include "abspath.h"
+ #include "parse-options.h"
#define BUILTIN_HOOK_RUN_USAGE \
- N_("git hook run [--ignore-missing] [--to-stdin=<path>] <hook-name> [-- <hook-args>]")
+ N_("git hook run [--ignore-missing] [--to-stdin=<path>] [(-j|--jobs) <n>]\n" \
+ "<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>")
@@ builtin/hook.c: static int run(int argc, const char **argv, const char *prefix,
N_("silently ignore missing requested <hook-name>")),
8: ff27b34a8d ! 7: 7b3ea03bd3 hook: add per-event jobs config
@@ Documentation/config/hook.adoc: hook.<name>.parallel::
## hook.c ##
@@ hook.c: struct hook_config_cache_entry {
* event_hooks: event-name to list of friendly-names map.
- * disabled_hooks: set of friendly-names with hook.name.enabled = false.
+ * disabled_hooks: set of friendly-names with hook.<friendly-name>.enabled = false.
* parallel_hooks: friendly-name to parallel flag.
+ * event_jobs: event-name to per-event jobs count (heap-allocated unsigned int *,
+ * where NULL == unset).
@@ hook.c: int run_hooks_opt(struct repository *r, const char *hook_name,
.tr2_label = hook_name,
## hook.h ##
-@@ hook.h: void hook_list_clear(struct string_list *hooks, cb_data_free_fn cb_data_free);
+@@ hook.h: void hook_free(void *p, const char *str UNUSED);
*/
struct hook_config_cache {
struct strmap hooks; /* maps event name -> string_list of hooks */
9: 2bc572e46e = 8: d5cf01444f hook: introduce extensions.hookStdoutToStderr
10: 35dbc4a6c5 = 9: 1cef7b5e22 hook: allow runtime enabling extensions.hookStdoutToStderr
Adrian Ratiu (6):
repository: fix repo_init() memleak due to missing _clear()
config: add a repo_config_get_uint() helper
hook: parse the hook.jobs config
hook: add per-event jobs config
hook: introduce extensions.hookStdoutToStderr
hook: allow runtime enabling extensions.hookStdoutToStderr
Emily Shaffer (3):
hook: allow parallel hook execution
hook: mark non-parallelizable hooks
hook: add -j/--jobs option to git hook run
Documentation/config/extensions.adoc | 15 +
Documentation/config/hook.adoc | 49 +++
Documentation/git-hook.adoc | 18 +-
builtin/am.c | 8 +-
builtin/checkout.c | 19 +-
builtin/clone.c | 6 +-
builtin/hook.c | 5 +-
builtin/receive-pack.c | 3 +-
builtin/worktree.c | 2 +-
commit.c | 2 +-
config.c | 28 ++
config.h | 13 +
hook.c | 149 ++++++++-
hook.h | 28 ++
parse.c | 9 +
parse.h | 1 +
repository.c | 2 +
repository.h | 1 +
setup.c | 17 +
setup.h | 1 +
t/t1800-hook.sh | 446 ++++++++++++++++++++++++++-
transport.c | 7 +-
22 files changed, 792 insertions(+), 37 deletions(-)
--
2.52.0.732.gb351b5166d.dirty
next prev parent reply other threads:[~2026-03-09 13:39 UTC|newest]
Thread overview: 113+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-04 17:33 [PATCH 0/4] Run hooks in parallel Adrian Ratiu
2026-02-04 17:33 ` [PATCH 1/4] config: add a repo_config_get_uint() helper Adrian Ratiu
2026-02-04 17:33 ` [PATCH 2/4] hook: allow parallel hook execution Adrian Ratiu
2026-02-11 12:41 ` Patrick Steinhardt
2026-02-12 12:25 ` Adrian Ratiu
2026-02-04 17:33 ` [PATCH 3/4] hook: introduce extensions.hookStdoutToStderr Adrian Ratiu
2026-02-04 17:33 ` [PATCH 4/4] hook: allow runtime enabling extensions.hookStdoutToStderr Adrian Ratiu
2026-02-12 10:43 ` [PATCH 0/4] Run hooks in parallel Phillip Wood
2026-02-12 14:24 ` Adrian Ratiu
2026-02-13 14:39 ` Phillip Wood
2026-02-13 17:21 ` Adrian Ratiu
2026-02-22 0:28 ` [PATCH v2 00/10] " Adrian Ratiu
2026-02-22 0:28 ` [PATCH v2 01/10] repository: fix repo_init() memleak due to missing _clear() Adrian Ratiu
2026-02-22 0:28 ` [PATCH v2 02/10] config: add a repo_config_get_uint() helper Adrian Ratiu
2026-02-22 0:28 ` [PATCH v2 03/10] hook: refactor hook_config_cache from strmap to named struct Adrian Ratiu
2026-02-22 0:28 ` [PATCH v2 04/10] hook: parse the hook.jobs config Adrian Ratiu
2026-02-22 0:28 ` [PATCH v2 05/10] hook: allow parallel hook execution Adrian Ratiu
2026-02-22 0:29 ` [PATCH v2 06/10] hook: mark non-parallelizable hooks Adrian Ratiu
2026-02-22 0:29 ` [PATCH v2 07/10] hook: add -j/--jobs option to git hook run Adrian Ratiu
2026-02-22 0:29 ` [PATCH v2 08/10] hook: add per-event jobs config Adrian Ratiu
2026-02-22 0:29 ` [PATCH v2 09/10] hook: introduce extensions.hookStdoutToStderr Adrian Ratiu
2026-02-22 0:29 ` [PATCH v2 10/10] hook: allow runtime enabling extensions.hookStdoutToStderr Adrian Ratiu
2026-03-09 13:37 ` Adrian Ratiu [this message]
2026-03-09 13:37 ` [PATCH v3 1/9] repository: fix repo_init() memleak due to missing _clear() Adrian Ratiu
2026-03-15 4:55 ` Junio C Hamano
2026-03-15 5:05 ` Junio C Hamano
2026-03-09 13:37 ` [PATCH v3 2/9] config: add a repo_config_get_uint() helper Adrian Ratiu
2026-03-09 13:37 ` [PATCH v3 3/9] hook: parse the hook.jobs config Adrian Ratiu
2026-03-15 16:13 ` Junio C Hamano
2026-03-09 13:37 ` [PATCH v3 4/9] hook: allow parallel hook execution Adrian Ratiu
2026-03-15 20:46 ` Junio C Hamano
2026-03-18 18:02 ` Adrian Ratiu
2026-03-09 13:37 ` [PATCH v3 5/9] hook: mark non-parallelizable hooks Adrian Ratiu
2026-03-15 20:56 ` Junio C Hamano
2026-03-18 18:40 ` Adrian Ratiu
2026-03-09 13:37 ` [PATCH v3 6/9] hook: add -j/--jobs option to git hook run Adrian Ratiu
2026-03-15 21:00 ` Junio C Hamano
2026-03-18 19:00 ` Adrian Ratiu
2026-03-09 13:37 ` [PATCH v3 7/9] hook: add per-event jobs config Adrian Ratiu
2026-03-16 18:40 ` Junio C Hamano
2026-03-18 19:21 ` Adrian Ratiu
2026-03-09 13:37 ` [PATCH v3 8/9] hook: introduce extensions.hookStdoutToStderr Adrian Ratiu
2026-03-16 18:44 ` Junio C Hamano
2026-03-18 19:50 ` Adrian Ratiu
2026-03-09 13:37 ` [PATCH v3 9/9] hook: allow runtime enabling extensions.hookStdoutToStderr Adrian Ratiu
2026-03-20 13:53 ` [PATCH v4 0/9] Run hooks in parallel Adrian Ratiu
2026-03-20 13:53 ` [PATCH v4 1/9] config: add a repo_config_get_uint() helper Adrian Ratiu
2026-03-20 13:53 ` [PATCH v4 2/9] hook: parse the hook.jobs config Adrian Ratiu
2026-03-24 9:07 ` Patrick Steinhardt
2026-03-24 18:59 ` Adrian Ratiu
2026-03-20 13:53 ` [PATCH v4 3/9] hook: allow parallel hook execution Adrian Ratiu
2026-03-24 9:07 ` Patrick Steinhardt
2026-03-20 13:53 ` [PATCH v4 4/9] hook: allow pre-push parallel execution Adrian Ratiu
2026-03-20 13:53 ` [PATCH v4 5/9] hook: mark non-parallelizable hooks Adrian Ratiu
2026-03-20 13:53 ` [PATCH v4 6/9] hook: add -j/--jobs option to git hook run Adrian Ratiu
2026-03-24 9:07 ` Patrick Steinhardt
2026-03-20 13:53 ` [PATCH v4 7/9] hook: add per-event jobs config Adrian Ratiu
2026-03-24 9:08 ` Patrick Steinhardt
2026-03-20 13:53 ` [PATCH v4 8/9] hook: warn when hook.<friendly-name>.jobs is set Adrian Ratiu
2026-03-24 9:08 ` Patrick Steinhardt
2026-03-20 13:53 ` [PATCH v4 9/9] hook: add hook.<event>.enabled switch Adrian Ratiu
2026-03-24 9:08 ` Patrick Steinhardt
2026-03-25 18:43 ` Adrian Ratiu
2026-03-20 17:24 ` [PATCH v4 0/9] Run hooks in parallel Junio C Hamano
2026-03-23 15:07 ` Adrian Ratiu
2026-03-24 9:07 ` Patrick Steinhardt
2026-03-26 10:18 ` [PATCH v5 00/12] " Adrian Ratiu
2026-03-26 10:18 ` [PATCH v5 01/12] repository: fix repo_init() memleak due to missing _clear() Adrian Ratiu
2026-03-26 10:18 ` [PATCH v5 02/12] config: add a repo_config_get_uint() helper Adrian Ratiu
2026-03-26 10:18 ` [PATCH v5 03/12] hook: parse the hook.jobs config Adrian Ratiu
2026-03-26 10:18 ` [PATCH v5 04/12] hook: allow parallel hook execution Adrian Ratiu
2026-03-26 10:18 ` [PATCH v5 05/12] hook: allow pre-push parallel execution Adrian Ratiu
2026-03-26 10:18 ` [PATCH v5 06/12] hook: mark non-parallelizable hooks Adrian Ratiu
2026-03-26 10:18 ` [PATCH v5 07/12] hook: add -j/--jobs option to git hook run Adrian Ratiu
2026-03-27 14:46 ` Patrick Steinhardt
2026-03-26 10:18 ` [PATCH v5 08/12] hook: add per-event jobs config Adrian Ratiu
2026-03-26 10:18 ` [PATCH v5 09/12] hook: warn when hook.<friendly-name>.jobs is set Adrian Ratiu
2026-03-27 14:46 ` Patrick Steinhardt
2026-03-26 10:18 ` [PATCH v5 10/12] hook: move is_known_hook() to hook.c for wider use Adrian Ratiu
2026-03-27 14:46 ` Patrick Steinhardt
2026-03-27 15:59 ` Adrian Ratiu
2026-03-26 10:18 ` [PATCH v5 11/12] hook: add hook.<event>.enabled switch Adrian Ratiu
2026-03-26 10:18 ` [PATCH v5 12/12] hook: allow hook.jobs=-1 to use all available CPU cores Adrian Ratiu
2026-04-04 8:29 ` [PATCH v6 00/12] Run hooks in parallel Adrian Ratiu
2026-04-04 8:29 ` [PATCH v6 01/12] repository: fix repo_init() memleak due to missing _clear() Adrian Ratiu
2026-04-04 8:29 ` [PATCH v6 02/12] config: add a repo_config_get_uint() helper Adrian Ratiu
2026-04-04 8:29 ` [PATCH v6 03/12] hook: parse the hook.jobs config Adrian Ratiu
2026-04-04 8:29 ` [PATCH v6 04/12] hook: allow parallel hook execution Adrian Ratiu
2026-04-04 8:29 ` [PATCH v6 05/12] hook: allow pre-push parallel execution Adrian Ratiu
2026-04-04 8:29 ` [PATCH v6 06/12] hook: mark non-parallelizable hooks Adrian Ratiu
2026-04-04 8:29 ` [PATCH v6 07/12] hook: add -j/--jobs option to git hook run Adrian Ratiu
2026-04-04 8:29 ` [PATCH v6 08/12] hook: add per-event jobs config Adrian Ratiu
2026-04-04 8:29 ` [PATCH v6 09/12] hook: warn when hook.<friendly-name>.jobs is set Adrian Ratiu
2026-04-04 8:29 ` [PATCH v6 10/12] hook: move is_known_hook() to hook.c for wider use Adrian Ratiu
2026-04-04 8:29 ` [PATCH v6 11/12] hook: add hook.<event>.enabled switch Adrian Ratiu
2026-04-04 8:29 ` [PATCH v6 12/12] hook: allow hook.jobs=-1 to use all available CPU cores Adrian Ratiu
2026-04-06 16:24 ` [PATCH v6 00/12] Run hooks in parallel Junio C Hamano
2026-04-08 10:17 ` Patrick Steinhardt
2026-04-08 16:57 ` Junio C Hamano
2026-04-10 9:05 ` [PATCH v7 00/13] " Adrian Ratiu
2026-04-10 9:05 ` [PATCH v7 01/13] repository: fix repo_init() memleak due to missing _clear() Adrian Ratiu
2026-04-10 9:05 ` [PATCH v7 02/13] config: add a repo_config_get_uint() helper Adrian Ratiu
2026-04-10 9:05 ` [PATCH v7 03/13] hook: parse the hook.jobs config Adrian Ratiu
2026-04-10 9:05 ` [PATCH v7 04/13] hook: allow parallel hook execution Adrian Ratiu
2026-04-10 9:06 ` [PATCH v7 05/13] hook: allow pre-push parallel execution Adrian Ratiu
2026-04-10 9:06 ` [PATCH v7 06/13] hook: mark non-parallelizable hooks Adrian Ratiu
2026-04-10 9:06 ` [PATCH v7 07/13] hook: add -j/--jobs option to git hook run Adrian Ratiu
2026-04-10 9:06 ` [PATCH v7 08/13] hook: add per-event jobs config Adrian Ratiu
2026-04-10 9:06 ` [PATCH v7 09/13] hook: warn when hook.<friendly-name>.jobs is set Adrian Ratiu
2026-04-10 9:06 ` [PATCH v7 10/13] hook: move is_known_hook() to hook.c for wider use Adrian Ratiu
2026-04-10 9:06 ` [PATCH v7 11/13] hook: add hook.<event>.enabled switch Adrian Ratiu
2026-04-10 9:06 ` [PATCH v7 12/13] hook: allow hook.jobs=-1 to use all available CPU cores Adrian Ratiu
2026-04-10 9:06 ` [PATCH v7 13/13] t1800: test SIGPIPE with parallel hooks Adrian Ratiu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: http://vger.kernel.org/majordomo-info.html
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260309133739.294555-1-adrian.ratiu@collabora.com \
--to=adrian.ratiu@collabora.com \
--cc=emilyshaffer@google.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=kristofferhaugsbakk@fastmail.com \
--cc=peff@peff.net \
--cc=ps@pks.im \
--cc=sandals@crustytoothpaste.net \
--cc=steadmon@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://80x24.org/mirrors/git.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).