LoginSignup
2
0

More than 5 years have passed since last update.

git branch -vv の青色が読めないので色を変えた

Posted at

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

とりあえず読めない状態はこれで回避できました。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0