Skip to content

Commit

Permalink
Documentation/config.txt: describe 'color' value type in the "Values"…
Browse files Browse the repository at this point in the history
… section

Instead of describing it for color.branch.<slot> and have everybody
else refer to it, explain how colors are spelled in "Values" section
upfront.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Mar 4, 2015
1 parent 5f7b91b commit b92c1a2
Showing 1 changed file with 13 additions and 16 deletions.
29 changes: 13 additions & 16 deletions Documentation/config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,16 @@ integer::
be suffixed with `k`, `M`,... to mean "scale the number by
1024", "by 1024x1024", etc.

color::
The value for a variables that takes a color is a list of
colors (at most two) and attributes (at most one), separated
by spaces. The colors accepted are `normal`, `black`,
`red`, `green`, `yellow`, `blue`, `magenta`, `cyan` and
`white`; the attributes are `bold`, `dim`, `ul`, `blink` and
`reverse`. The first color given is the foreground; the
second is the background. The position of the attribute, if
any, doesn't matter.


Variables
~~~~~~~~~
Expand Down Expand Up @@ -838,14 +848,6 @@ color.branch.<slot>::
`remote` (a remote-tracking branch in refs/remotes/),
`upstream` (upstream tracking branch), `plain` (other
refs).
+
The value for these configuration variables is a list of colors (at most
two) and attributes (at most one), separated by spaces. The colors
accepted are `normal`, `black`, `red`, `green`, `yellow`, `blue`,
`magenta`, `cyan` and `white`; the attributes are `bold`, `dim`, `ul`,
`blink` and `reverse`. The first color given is the foreground; the
second is the background. The position of the attribute, if any,
doesn't matter.

color.diff::
Whether to use ANSI escape sequences to add color to patches.
Expand All @@ -865,8 +867,7 @@ color.diff.<slot>::
of `plain` (context text), `meta` (metainformation), `frag`
(hunk header), 'func' (function in hunk header), `old` (removed lines),
`new` (added lines), `commit` (commit headers), or `whitespace`
(highlighting whitespace errors). The values of these variables may be
specified as in color.branch.<slot>.
(highlighting whitespace errors).

color.decorate.<slot>::
Use customized color for 'git log --decorate' output. `<slot>` is one
Expand Down Expand Up @@ -899,8 +900,6 @@ color.grep.<slot>::
separators between fields on a line (`:`, `-`, and `=`)
and between hunks (`--`)
--
+
The values of these variables may be specified as in color.branch.<slot>.

color.interactive::
When set to `always`, always use colors for interactive prompts
Expand All @@ -913,8 +912,7 @@ color.interactive.<slot>::
Use customized color for 'git add --interactive' and 'git clean
--interactive' output. `<slot>` may be `prompt`, `header`, `help`
or `error`, for four distinct types of normal output from
interactive commands. The values of these variables may be
specified as in color.branch.<slot>.
interactive commands.

color.pager::
A boolean to enable/disable colored output when the pager is in
Expand All @@ -940,8 +938,7 @@ color.status.<slot>::
`untracked` (files which are not tracked by Git),
`branch` (the current branch), or
`nobranch` (the color the 'no branch' warning is shown in, defaulting
to red). The values of these variables may be specified as in
color.branch.<slot>.
to red).

color.ui::
This variable determines the default value for variables such
Expand Down

0 comments on commit b92c1a2

Please sign in to comment.