2019年10月24日木曜日

Powershellでgitを使うときのフォントカラーを変更する

Powershellでgitを使うと、カラーになった部分の色が見にくいです。デフォルトでは特にエラーの赤色が背景とのコントラストで見えない・・・。

.gitconfig ファイルにこれを記載します。.gitconfigはhomeにあります。

[color]
    ui = true
[color "status"]
    changed = red bold
    untracked = red bold
    added = green bold
    nobranch = red bold 

https://stackoverflow.com/questions/18420139/changing-git-status-output-colors-in-posh-git


nobranch は HEAD detached at とかの部分。
redは暗いので、red boldにします。


configについてはこちら。color.status. という設定になっていて、の部分にbranchやheaderをいれて設定する。

https://git-scm.com/docs/git-config

0 件のコメント:

コメントを投稿