summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristoffer Haugsbakk <code@khaugsbakk.name>2026-05-21 18:25:56 +0200
committerJunio C Hamano <gitster@pobox.com>2026-05-22 09:36:20 +0900
commit2d2aeb331ea2ba3e46db382738c64e95a5ca3478 (patch)
tree63d6740f672dfb14a7b528f93fcd96e054c7d955
parentc8a3ceaa2f2c01d778e10685fc8de70592eefb2c (diff)
doc: hook: consistently capitalize Git
Signed-off-by: Kristoffer Haugsbakk <code@khaugsbakk.name> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Documentation/git-hook.adoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/git-hook.adoc b/Documentation/git-hook.adoc
index 96c5c9c3c2..750df58e58 100644
--- a/Documentation/git-hook.adoc
+++ b/Documentation/git-hook.adoc
@@ -3,7 +3,7 @@ git-hook(1)
NAME
----
-git-hook - Run git hooks
+git-hook - Run Git hooks
SYNOPSIS
--------
@@ -15,8 +15,8 @@ SYNOPSIS
DESCRIPTION
-----------
-A command interface for running git hooks (see linkgit:githooks[5]),
-for use by other scripted git commands.
+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:
@@ -161,7 +161,7 @@ setting, allowing all hooks for the event to run concurrently, even if they
are not individually marked as parallel.
+
Some hooks always run sequentially regardless of this flag or the
-`hook.jobs` config, because git knows they cannot safely run in parallel:
+`hook.jobs` config, because Git knows they cannot safely run in parallel:
`applypatch-msg`, `pre-commit`, `prepare-commit-msg`, `commit-msg`,
`post-commit`, `post-checkout`, and `push-to-checkout`.