diff options
author | 2018-04-23 17:09:00 -0700 | |
---|---|---|
committer | 2018-04-24 11:03:17 +0900 | |
commit | 0dc95a4d8a71bcb0c9d0163716bd99c2d785bd10 (patch) | |
tree | eec6accb6f09b4efde6a51a78f79991b8f8e50bf /Documentation | |
parent | builtin/blame: highlight recently changed lines (diff) | |
download | tgif-0dc95a4d8a71bcb0c9d0163716bd99c2d785bd10.tar.xz |
builtin/blame: add new coloring scheme config
Add a config option that allows selecting the default color scheme for
blame. The command line still takes precedence over the configuration.
It is to be seen, how color.ui will integrate with blame coloring.
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index c6aea52e98..4eb030ed43 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -1240,6 +1240,11 @@ everything older than one year blue, recent changes between one month and one year old are kept white, and lines introduced within the last month are colored red. +blame.coloring:: + This determines the coloring scheme to be applied to blame + output. It can be 'repeatedLines', 'highlightRecent', + or 'none' which is the default. + color.ui:: This variable determines the default value for variables such as `color.diff` and `color.grep` that control the use of color |