git branch -vv の青色が読めない
色を変更する。
git config --global -e
で以下を追加
[color "branch"]
upstream = bold cyan
とても見やすくなりました。
参考:https://github.com/git/git/blob/master/Documentation/config.txt
ついでにtigも見やすくする。
.tigrc
に以下の設定を記述しました。
set ignore-space = all # 空白無視
# Color Settings
color default white black
color cursor default magenta
color status white green bold
color date cyan default
color delimiter cyan default
color line-number yellow default
color diff-header yellow default
color diff-index cyan default
color diff-chunk magenta default
color diff-stat cyan default
color "Reported-by:" green default
color graph-commit cyan default
とりあえず読めない状態はこれで回避できました。