diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2013-11-18 18:39:12 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-11-19 19:14:15 +0100 |
commit | fddb74c94777351d549b2ddaa36612c41b2176f1 (patch) | |
tree | d528aed0dd6a1086cc8600fe2c9aa5915a6f4817 /builtin/for-each-ref.c | |
parent | for-each-ref: introduce %(upstream:track[short]) (diff) | |
download | git-fddb74c94777351d549b2ddaa36612c41b2176f1.tar.xz git-fddb74c94777351d549b2ddaa36612c41b2176f1.zip |
for-each-ref: introduce %(color:...) for color
Enhance 'git for-each-ref' with color formatting options. You can now
use the following format in for-each-ref:
%(color:green)%(refname:short)%(color:reset)
where color names are described in color.branch.*.
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/for-each-ref.c')
-rw-r--r-- | builtin/for-each-ref.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/builtin/for-each-ref.c b/builtin/for-each-ref.c index 9e45abd40a..bc655b5042 100644 --- a/builtin/for-each-ref.c +++ b/builtin/for-each-ref.c @@ -9,6 +9,7 @@ #include "quote.h" #include "parse-options.h" #include "remote.h" +#include "color.h" /* Quoting styles */ #define QUOTE_NONE 0 @@ -76,6 +77,7 @@ static struct { { "symref" }, { "flag" }, { "HEAD" }, + { "color" }, }; /* @@ -662,8 +664,13 @@ static void populate_value(struct refinfo *ref) !branch->merge[0]->dst) continue; refname = branch->merge[0]->dst; - } - else if (!strcmp(name, "flag")) { + } else if (!prefixcmp(name, "color:")) { + char color[COLOR_MAXLEN] = ""; + + color_parse(name + 6, "--format", color); + v->s = xstrdup(color); + continue; + } else if (!strcmp(name, "flag")) { char buf[256], *cp = buf; if (ref->flag & REF_ISSYMREF) cp = copy_advance(cp, ",symref"); |