diff options
author | Jeff King <peff@peff.net> | 2017-10-03 15:45:47 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-10-04 04:35:29 +0200 |
commit | 0c88bf50502e2be7d7d8965052d77bbf08e1d519 (patch) | |
tree | 2e0526a67f059be8fce0eaac254232845bdb9544 /t/t6300-for-each-ref.sh | |
parent | t3205: use --color instead of color.branch=always (diff) | |
download | git-0c88bf50502e2be7d7d8965052d77bbf08e1d519.tar.xz git-0c88bf50502e2be7d7d8965052d77bbf08e1d519.zip |
provide --color option for all ref-filter users
When ref-filter learned about want_color() in 11b087adfd
(ref-filter: consult want_color() before emitting colors,
2017-07-13), it became useful to be able to turn colors off
and on for specific commands. For git-branch, you can do so
with --color/--no-color.
But for git-for-each-ref and git-tag, the other users of
ref-filter, you have no option except to tweak the
"color.ui" config setting. Let's give both of these commands
the usual color command-line options.
This is a bit more obvious as a method for overriding the
config. And it also prepares us for the behavior of "always"
changing (so that we are still left with a way of forcing
color when our output goes to a non-terminal).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t6300-for-each-ref.sh')
-rwxr-xr-x | t/t6300-for-each-ref.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t6300-for-each-ref.sh b/t/t6300-for-each-ref.sh index d6bffe6273..6358134805 100755 --- a/t/t6300-for-each-ref.sh +++ b/t/t6300-for-each-ref.sh @@ -435,8 +435,8 @@ test_expect_success '%(color) does not show color without tty' ' test_cmp expected.bare actual ' -test_expect_success 'color.ui=always can override tty check' ' - git -c color.ui=always for-each-ref --format="$color_format" >actual.raw && +test_expect_success '--color can override tty check' ' + git for-each-ref --color --format="$color_format" >actual.raw && test_decode_color <actual.raw >actual && test_cmp expected.color actual ' |