diff options
author | Jeff King <peff@peff.net> | 2008-01-05 04:57:44 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-01-06 18:41:44 -0800 |
commit | 47ee06f1224cc355d0d5fffb0a65b831790b2845 (patch) | |
tree | 7974072307f503d3635b2584e84e3cc83974e522 /Documentation | |
parent | f87e310d2c53f412cf9ba0a04e06c974c17b9062 (diff) | |
download | git-47ee06f1224cc355d0d5fffb0a65b831790b2845.tar.gz |
Document the color.interactive semantics
There are two possible confusions with the color.interactive
description:
1. the short name "interactive" implies that it covers all
interactive commands; let's explicitly make it so, even
though there are no other interactive commands which
currently use it
2. Not all parts of "git add --interactive" are controlled
by color.interactive (specifically, the diffs require
tweaking color.diff). So let's clarify that it applies
only to displays and prompts.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index d44bc7ac4c..1a90e6bf27 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -406,7 +406,8 @@ color.diff.<slot>:: in color.branch.<slot>. color.interactive:: - When set to `always`, always use colors in `git add --interactive`. + When set to `always`, always use colors for interactive prompts + and displays (such as those used by "git add --interactive"). When false (or `never`), never. When set to `true` or `auto`, use colors only when the output is to the terminal. Defaults to false. |