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 @@ -12,7 +12,7 @@ SYNOPSIS
12
12
'git config list' [<file-option>] [<display-option>] [--includes]
13
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
- 'git config unset' [<file-option>] [--all] [--value=<value>] [--fixed-value] <name> <value>
15
+ 'git config unset' [<file-option>] [--all] [--value=<value>] [--fixed-value] <name>
16
16
'git config rename-section' [<file-option>] <old-name> <new-name>
17
17
'git config remove-section' [<file-option>] <name>
18
18
'git config edit' [<file-option>]
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ static const char *const builtin_config_usage[] = {
19
19
N_ ("git config list [<file-option>] [<display-option>] [--includes]" ),
20
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
- N_ ("git config unset [<file-option>] [--all] [--value=<value>] [--fixed-value] <name> <value> " ),
22
+ N_ ("git config unset [<file-option>] [--all] [--value=<value>] [--fixed-value] <name>" ),
23
23
N_ ("git config rename-section [<file-option>] <old-name> <new-name>" ),
24
24
N_ ("git config remove-section [<file-option>] <name>" ),
25
25
N_ ("git config edit [<file-option>]" ),
@@ -43,7 +43,7 @@ static const char *const builtin_config_set_usage[] = {
43
43
};
44
44
45
45
static const char * const builtin_config_unset_usage [] = {
46
- N_ ("git config unset [<file-option>] [--all] [--value=<value>] [--fixed-value] <name> <value> " ),
46
+ N_ ("git config unset [<file-option>] [--all] [--value=<value>] [--fixed-value] <name>" ),
47
47
NULL
48
48
};
49
49
You can’t perform that action at this time.
0 commit comments