@@ -39,7 +39,7 @@ in the section header, like in example below:
3939
4040Subsection names can contain any characters except newline (doublequote
4141'`"`' and backslash have to be escaped as '`\"`' and '`\\`',
42- respecitvely ) and are case sensitive. Section header cannot span multiple
42+ respectively ) and are case sensitive. Section header cannot span multiple
4343lines. Variables may belong directly to a section or to a given subsection.
4444You can have `[section]` if you have `[section "subsection"]`, but you
4545don't need to.
@@ -62,7 +62,7 @@ The values following the equals sign in variable assign are all either
6262a string, an integer, or a boolean. Boolean values may be given as yes/no,
63630/1 or true/false. Case is not significant in boolean values, when
6464converting value to the canonical form using '--bool' type specifier;
65- `git-repo- config` will ensure that the output is "true" or "false".
65+ `git-config` will ensure that the output is "true" or "false".
6666
6767String values may be entirely or partially enclosed in double quotes.
6868You need to enclose variable value in double quotes if you want to
@@ -250,23 +250,29 @@ color.branch.<slot>::
250250 Use customized color for branch coloration. `<slot>` is one of
251251 `current` (the current branch), `local` (a local branch),
252252 `remote` (a tracking branch in refs/remotes/), `plain` (other
253- refs), or `reset` (the normal terminal color). The value for
254- these configuration variables can be one of: `normal`, `bold`,
255- `dim`, `ul`, `blink`, `reverse`, `reset`, `black`, `red`,
256- `green`, `yellow`, `blue`, `magenta`, `cyan`, or `white`.
253+ refs).
254+ +
255+ The value for these configuration variables is a list of colors (at most
256+ two) and attributes (at most one), separated by spaces. The colors
257+ accepted are `normal`, `black`, `red`, `green`, `yellow`, `blue`,
258+ `magenta`, `cyan` and `white`; the attributes are `bold`, `dim`, `ul`,
259+ `blink` and `reverse`. The first color given is the foreground; the
260+ second is the background. The position of the attribute, if any,
261+ doesn't matter.
257262
258263color.diff::
259264 When true (or `always`), always use colors in patch.
260265 When false (or `never`), never. When set to `auto`, use
261266 colors only when the output is to the terminal.
262267
263268color.diff.<slot>::
264- Use customized color for diff colorization. `<slot>`
265- specifies which part of the patch to use the specified
266- color, and is one of `plain` (context text), `meta`
267- (metainformation), `frag` (hunk header), `old` (removed
268- lines), or `new` (added lines). The values of these
269- variables may be specified as in color.branch.<slot>.
269+ Use customized color for diff colorization. `<slot>` specifies
270+ which part of the patch to use the specified color, and is one
271+ of `plain` (context text), `meta` (metainformation), `frag`
272+ (hunk header), `old` (removed lines), `new` (added lines),
273+ `commit` (commit headers), or `whitespace` (highlighting dubious
274+ whitespace). The values of these variables may be specified as
275+ in color.branch.<slot>.
270276
271277color.pager::
272278 A boolean to enable/disable colored output when the pager is in
0 commit comments