git color.ui does not work on Ubuntu 14.10 -
i have installed git version 2.1.0 on ubuntu 14.10.
i have created local git repository , have branches highlighted colors in ubuntu default terminal.
i have done :
git config --global color.ui true
but has no effect on terminal (i have tried restart it).
this content of ~/.gitconfig file:
$ cat ~/.gitconfig [alias] st = status co = checkout [color] ui = true branch = auto diff = auto interactive = auto status = auto
any ideas why branches not coloured/highlighted in ubuntu terminal when inside repository?
i have read this:
how color git console in ubuntu?
but provide help
i expecting this:
if you're expecting branch name colored git status
appears have turn explicitly on. guess it's missing default color color.ui = auto
apply.
[color "status"] branch = green
Comments
Post a Comment