As of this commit, the cannonical way to retreive an ANSI-compatible color escape sequence from a configuration file is with the `--get-color` action. This is to allow Git to "fall back" on a default value for the color should the given section not exist in the specified configuration(s). With the addition of `--default`, this is no longer needed since: $ git config --default red --color core.section will be have exactly as: $ git config --get-color core.section red For consistency, let's introduce `--color` and encourage `--color`, `--default` together over `--get-color` alone. Signed-off-by: Taylor Blau <me@xxxxxxxxxxxx> --- Documentation/git-config.txt | 10 +++++++--- builtin/config.c | 17 +++++++++++++++++ t/t1300-repo-config.sh | 16 ++++++++++++++++ 3 files changed, 40 insertions(+), 3 deletions(-) diff --git a/Documentation/git-config.txt b/Documentation/git-config.txt index 28d84ded9..0dfb20324 100644 --- a/Documentation/git-config.txt +++ b/Documentation/git-config.txt @@ -42,9 +42,9 @@ The type specifier can be either `--int` or `--bool`, to make 'git config' ensure that the variable(s) are of the given type and convert the value to the canonical form (simple decimal number for int, a "true" or "false" string for bool, either of for --bool-or-int), or `--path`, which does some path expansion -(see `--path` below), or `--expiry-date` (see `--expiry-date` below). If no -type specifier is passed, no checks or transformations are performed on the -value. +(see `--path` below), or `--expiry-date` (see `--expiry-date` below), or +`--color` (see `--color` below). If no type specifier is passed, no checks or +transformations are performed on the value. When reading, the values are read from the system, global and repository local configuration files by default, and options @@ -186,6 +186,10 @@ See also <<FILES>>. a fixed or relative date-string to a timestamp. This option has no effect when setting the value. +--color:: + `git config` will ensure that the output is converted to an + ANSI color escape sequence. + -z:: --null:: For all options that output values and/or keys, always diff --git a/builtin/config.c b/builtin/config.c index 76edefc07..05f97f2cb 100644 --- a/builtin/config.c +++ b/builtin/config.c @@ -54,6 +54,7 @@ static int show_origin; #define TYPE_BOOL_OR_INT (1<<2) #define TYPE_PATH (1<<3) #define TYPE_EXPIRY_DATE (1<<4) +#define TYPE_COLOR (1<<5) static struct option builtin_config_options[] = { OPT_GROUP(N_("Config file location")), @@ -83,6 +84,7 @@ static struct option builtin_config_options[] = { OPT_BIT(0, "bool-or-int", &types, N_("value is --bool or --int"), TYPE_BOOL_OR_INT), OPT_BIT(0, "path", &types, N_("value is a path (file or directory name)"), TYPE_PATH), OPT_BIT(0, "expiry-date", &types, N_("value is an expiry date"), TYPE_EXPIRY_DATE), + OPT_BIT(0, "color", &types, N_("value is a color"), TYPE_COLOR), OPT_GROUP(N_("Other")), OPT_BOOL('z', "null", &end_null, N_("terminate values with NUL byte")), OPT_BOOL(0, "name-only", &omit_values, N_("show variable names only")), @@ -168,6 +170,12 @@ static int format_config(struct strbuf *buf, const char *key_, const char *value if (git_config_expiry_date(&t, key_, value_) < 0) return -1; strbuf_addf(buf, "%"PRItime, t); + } else if (types == TYPE_COLOR) { + char *v = xmalloc(COLOR_MAXLEN); + if (git_config_color(&v, key_, value_) < 0) + return -1; + strbuf_addstr(buf, v); + free((char *) v); } else if (value_) { strbuf_addstr(buf, value_); } else { @@ -313,6 +321,15 @@ static char *normalize_value(const char *key, const char *value) else return xstrdup(v ? "true" : "false"); } + if (types == TYPE_COLOR) { + char *v = xmalloc(COLOR_MAXLEN); + if (!git_config_color(&v, key, value)) { + free((char *) v); + return xstrdup(value); + } + free((char *) v); + die("cannot parse color '%s'", value); + } die("BUG: cannot normalize type %d", types); } diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh index 4f8e6f5fd..c03f54fbe 100755 --- a/t/t1300-repo-config.sh +++ b/t/t1300-repo-config.sh @@ -931,6 +931,22 @@ test_expect_success 'get --expiry-date' ' test_must_fail git config --expiry-date date.invalid1 ' +cat >expect <<EOF +[foo] + color = red +EOF + +test_expect_success 'get --color' ' + rm .git/config && + git config --color foo.color "red" && + test_cmp expect .git/config +' + +test_expect_success 'get --color barfs on non-color' ' + echo "[foo]bar=not-a-color" >.git/config && + test_must_fail git config --get --color foo.bar +' + cat > expect << EOF [quote] leading = " test" -- 2.15.1.354.g95ec6b1b3