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
1212'git config list' [<file-option>] [<display-option>] [--includes]
1313'git config get' [<file-option>] [<display-option>] [--includes] [--all] [--regexp] [--value=<value>] [--fixed-value] [--default=<default>] <name>
1414'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>
1616'git config rename-section' [<file-option>] <old-name> <new-name>
1717'git config remove-section' [<file-option>] <name>
1818'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[] = {
1919 N_ ("git config list [<file-option>] [<display-option>] [--includes]" ),
2020 N_ ("git config get [<file-option>] [<display-option>] [--includes] [--all] [--regexp] [--value=<value>] [--fixed-value] [--default=<default>] <name>" ),
2121 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>" ),
2323 N_ ("git config rename-section [<file-option>] <old-name> <new-name>" ),
2424 N_ ("git config remove-section [<file-option>] <name>" ),
2525 N_ ("git config edit [<file-option>]" ),
@@ -43,7 +43,7 @@ static const char *const builtin_config_set_usage[] = {
4343};
4444
4545static 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>" ),
4747 NULL
4848};
4949
You can’t perform that action at this time.
0 commit comments