git-config.1: fix description of --regexp in synopsis
The synopsis says --regexp=<regexp> but the --regexp option is a Boolean that says "the name given is not literal, but a pattern to match the name". Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
686e9f616f
commit
1609470409
|
@ -10,7 +10,7 @@ SYNOPSIS
|
||||||
--------
|
--------
|
||||||
[verse]
|
[verse]
|
||||||
'git config list' [<file-option>] [<display-option>] [--includes]
|
'git config list' [<file-option>] [<display-option>] [--includes]
|
||||||
'git config get' [<file-option>] [<display-option>] [--includes] [--all] [--regexp=<regexp>] [--value=<value>] [--fixed-value] [--default=<default>] <name>
|
'git config get' [<file-option>] [<display-option>] [--includes] [--all] [--regexp] [--value=<value>] [--fixed-value] [--default=<default>] <name>
|
||||||
'git config set' [<file-option>] [--type=<type>] [--all] [--value=<value>] [--fixed-value] <name> <value>
|
'git config set' [<file-option>] [--type=<type>] [--all] [--value=<value>] [--fixed-value] <name> <value>
|
||||||
'git config unset' [<file-option>] [--all] [--value=<value>] [--fixed-value] <name> <value>
|
'git config unset' [<file-option>] [--all] [--value=<value>] [--fixed-value] <name> <value>
|
||||||
'git config rename-section' [<file-option>] <old-name> <new-name>
|
'git config rename-section' [<file-option>] <old-name> <new-name>
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
static const char *const builtin_config_usage[] = {
|
static const char *const builtin_config_usage[] = {
|
||||||
N_("git config list [<file-option>] [<display-option>] [--includes]"),
|
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 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 unset [<file-option>] [--all] [--value=<value>] [--fixed-value] <name> <value>"),
|
||||||
N_("git config rename-section [<file-option>] <old-name> <new-name>"),
|
N_("git config rename-section [<file-option>] <old-name> <new-name>"),
|
||||||
|
|
Loading…
Reference in New Issue