File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ SYNOPSIS
10
10
--------
11
11
[verse]
12
12
'git config list' [<file-option>] [<display-option>] [--includes]
13
- 'git config get' [<file-option>] [<display-option>] [--includes] [--all] [--regexp=<regexp> ] [--value=<value>] [--fixed-value] [--default=<default>] <name>
13
+ 'git config get' [<file-option>] [<display-option>] [--includes] [--all] [--regexp] [--value=<value>] [--fixed-value] [--default=<default>] <name>
14
14
'git config set' [<file-option>] [--type=<type>] [--all] [--value=<value>] [--fixed-value] <name> <value>
15
15
'git config unset' [<file-option>] [--all] [--value=<value>] [--fixed-value] <name> <value>
16
16
'git config rename-section' [<file-option>] <old-name> <new-name>
@@ -309,7 +309,7 @@ recommended to migrate to the new syntax.
309
309
Replaced by `git config get [--value=<pattern>] <name>`.
310
310
311
311
--get-all <name> [<value-pattern>]::
312
- Replaced by `git config get [--value=<pattern>] --all --show-names <name>`.
312
+ Replaced by `git config get [--value=<pattern>] --all <name>`.
313
313
314
314
--get-regexp <name-regexp>::
315
315
Replaced by `git config get --all --show-names --regexp <name-regexp>`.
Original file line number Diff line number Diff line change 17
17
18
18
static const char * const builtin_config_usage [] = {
19
19
N_ ("git config list [<file-option>] [<display-option>] [--includes]" ),
20
- N_ ("git config get [<file-option>] [<display-option>] [--includes] [--all] [--regexp=<regexp> ] [--value=<value>] [--fixed-value] [--default=<default>] <name>" ),
20
+ N_ ("git config get [<file-option>] [<display-option>] [--includes] [--all] [--regexp] [--value=<value>] [--fixed-value] [--default=<default>] <name>" ),
21
21
N_ ("git config set [<file-option>] [--type=<type>] [--all] [--value=<value>] [--fixed-value] <name> <value>" ),
22
22
N_ ("git config unset [<file-option>] [--all] [--value=<value>] [--fixed-value] <name> <value>" ),
23
23
N_ ("git config rename-section [<file-option>] <old-name> <new-name>" ),
You can’t perform that action at this time.
0 commit comments