Package: git Version: 1:2.30.2-1+deb11u2 Severity: minor "git init" outputs a bunch of lines marked "hint:". For me it's emitting those lines with a bunch of ANSI colour escape sequences, despite me having configured color.ui=never in my ~/.gitconfig. Some strace output:
write(2, "\33[33mhint: Using 'master' as the"..., 90) = 90 write(2, "\33[33mhint: is subject to change."..., 87) = 87 write(2, "\33[33mhint: of your new repositor"..., 80) = 80 write(2, "\33[33mhint: \33[m\n", 15) = 15 write(2, "\33[33mhint: \tgit config --global "..., 61) = 61 write(2, "\33[33mhint: \33[m\n", 15) = 15 write(2, "\33[33mhint: Names commonly chosen"..., 80) = 80 write(2, "\33[33mhint: 'development'. The ju"..., 86) = 86 write(2, "\33[33mhint: \33[m\n", 15) = 15 write(2, "\33[33mhint: \tgit branch -m <name>"..., 36) = 36 And a configuration extract: $ sed -n 6,7p ~/.gitconfig [color] ui = never -zefram