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 /t | |
parent | for-each-ref: introduce %(upstream:track[short]) (diff) | |
download | tgif-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 't')
-rwxr-xr-x | t/t6300-for-each-ref.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/t/t6300-for-each-ref.sh b/t/t6300-for-each-ref.sh index d88d7acbdd..69e3155a62 100755 --- a/t/t6300-for-each-ref.sh +++ b/t/t6300-for-each-ref.sh @@ -343,6 +343,23 @@ test_expect_success 'Check for invalid refname format' ' test_must_fail git for-each-ref --format="%(refname:INVALID)" ' +get_color () +{ + git config --get-color no.such.slot "$1" +} + +cat >expected <<EOF +$(git rev-parse --short refs/heads/master) $(get_color green)master$(get_color reset) +$(git rev-parse --short refs/remotes/origin/master) $(get_color green)origin/master$(get_color reset) +$(git rev-parse --short refs/tags/testtag) $(get_color green)testtag$(get_color reset) +$(git rev-parse --short refs/tags/two) $(get_color green)two$(get_color reset) +EOF + +test_expect_success 'Check %(color:...) ' ' + git for-each-ref --format="%(objectname:short) %(color:green)%(refname:short)%(color:reset)" >actual && + test_cmp expected actual +' + cat >expected <<\EOF heads/master tags/master |