X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=config.c;h=82b35624543a2e50d80cafab15b63df0152adbc0;hb=17a10f3709c211769c9fada79bd1608aa64f6080;hp=0ac6aebbbcbd666d5bd8201ce28e1868bd6d5a30;hpb=2dcb927f37976ef5185cef5452516b170b14cd6c;p=git.git diff --git a/config.c b/config.c index 0ac6aebbb..82b356245 100644 --- a/config.c +++ b/config.c @@ -309,6 +309,11 @@ int git_default_config(const char *var, const char *value) return 0; } + if (!strcmp(var, "pager.color")) { + pager_use_color = git_config_bool(var,value); + return 0; + } + /* Add other config variables here and to Documentation/config.txt. */ return 0; }