aboutsummaryrefslogtreecommitdiffstats
path: root/builtin/config.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-09-13 15:26:52 -0700
committerJunio C Hamano <gitster@pobox.com>2024-09-13 15:26:52 -0700
commit8b4bb65a8fc4864525c9c9b1752cde1ca3d6ac63 (patch)
tree0b45c7c42fd16e7406c2d181b47e67798c49e780 /builtin/config.c
parentMerge branch 'aa/cat-file-batch-output-doc' into maint-2.46 (diff)
parentgit-config.1: fix description of --regexp in synopsis (diff)
downloadgit-8b4bb65a8fc4864525c9c9b1752cde1ca3d6ac63.tar.gz
git-8b4bb65a8fc4864525c9c9b1752cde1ca3d6ac63.zip
Merge branch 'jc/config-doc-update' into maint-2.46
Docfix. * jc/config-doc-update: git-config.1: fix description of --regexp in synopsis git-config.1: --get-all description update
Diffstat (limited to 'builtin/config.c')
-rw-r--r--builtin/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/config.c b/builtin/config.c
index 20a0b64090..97e4d5f57c 100644
--- a/builtin/config.c
+++ b/builtin/config.c
@@ -17,7 +17,7 @@
static const char *const builtin_config_usage[] = {
N_("git config list [<file-option>] [<display-option>] [--includes]"),
- N_("git config get [<file-option>] [<display-option>] [--includes] [--all] [--regexp=<regexp>] [--value=<value>] [--fixed-value] [--default=<default>] <name>"),
+ N_("git config get [<file-option>] [<display-option>] [--includes] [--all] [--regexp] [--value=<value>] [--fixed-value] [--default=<default>] <name>"),
N_("git config set [<file-option>] [--type=<type>] [--all] [--value=<value>] [--fixed-value] <name> <value>"),
N_("git config unset [<file-option>] [--all] [--value=<value>] [--fixed-value] <name> <value>"),
N_("git config rename-section [<file-option>] <old-name> <new-name>"),