diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-09-26 16:09:15 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-26 16:09:15 -0700 |
commit | b3e588a48af0ce15832c240887b9a3f9361d22bb (patch) | |
tree | 62a76375549a77aa430867df46853f2f18a82270 /t | |
parent | Merge branch 'mm/config-color-ui-default-to-auto' (diff) | |
parent | pretty: let %C(auto) reset all attributes (diff) | |
download | tgif-b3e588a48af0ce15832c240887b9a3f9361d22bb.tar.xz |
Merge branch 'rs/c-auto-resets-attributes'
The pretty-format specifier "%C(auto)" used by the "log" family of
commands to enable coloring of the output is taught to also issue a
color-reset sequence to the output.
* rs/c-auto-resets-attributes:
pretty: let %C(auto) reset all attributes
Diffstat (limited to 't')
-rwxr-xr-x | t/t6006-rev-list-format.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t6006-rev-list-format.sh b/t/t6006-rev-list-format.sh index a1dcdb81d7..f6020cd2aa 100755 --- a/t/t6006-rev-list-format.sh +++ b/t/t6006-rev-list-format.sh @@ -225,7 +225,7 @@ test_expect_success '%C(auto,...) respects --color=auto (stdout not tty)' ' test_expect_success '%C(auto) respects --color' ' git log --color --format="%C(auto)%H" -1 >actual && - printf "\\033[33m%s\\033[m\\n" $(git rev-parse HEAD) >expect && + printf "\\033[m\\033[33m%s\\033[m\\n" $(git rev-parse HEAD) >expect && test_cmp expect actual ' |