diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2013-11-18 23:09:12 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-11-19 10:14:15 -0800 |
commit | fddb74c94777351d549b2ddaa36612c41b2176f1 (patch) | |
tree | d528aed0dd6a1086cc8600fe2c9aa5915a6f4817 /Documentation/git-for-each-ref.txt | |
parent | b28061ce0d2e31d390fee5a5724b8a061d0492a7 (diff) | |
download | git-fddb74c94777351d549b2ddaa36612c41b2176f1.tar.gz git-fddb74c94777351d549b2ddaa36612c41b2176f1.tar.xz |
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 'Documentation/git-for-each-ref.txt')
-rw-r--r-- | Documentation/git-for-each-ref.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/git-for-each-ref.txt b/Documentation/git-for-each-ref.txt index 92e82fdb0..94f5c465d 100644 --- a/Documentation/git-for-each-ref.txt +++ b/Documentation/git-for-each-ref.txt @@ -101,6 +101,10 @@ HEAD:: '*' if HEAD matches current ref (the checked out branch), ' ' otherwise. +color:: + Change output color. Followed by `:<colorname>`, where names + are described in `color.branch.*`. + In addition to the above, for commit and tag objects, the header field names (`tree`, `parent`, `object`, `type`, and `tag`) can be used to specify the value in the header field. |