2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

git statusで表示されるファイルのステータスの色を変更する[Git][gitconfig]

Last updated at Posted at 2024-10-14

git statusコマンドを打ったときに表示されるファイルの色が下のように非常に見にくいので色を変更したいなと思い、やり方を調べてみました。

スクリーンショット 2024-10-01 10.42.56.png

.gitconfigを編集する

.gitconfigを編集することで色を変更することができます。

.gitconfigはホームディレクトリにあるはずです。

.gitconfigが見当たらない場合

.gitconfigがもしない場合は、ホームディレクトリ配下に作ってください。

Windowsは、C:\Users\<YourUsername>
Macは、~になります。

.gitconfigを以下のように設定します。

.gitconfig
[color "status"]
	added = yellow
    changed = green
    untracked = cyan

すると、下のような感じで色が変更されます。

スクリーンショット 2024-10-01 10.44.02.png

色の種類は、 normal、 black、 red、 green、 yellow、 blue、 magenta、 cyan、 white
の9種類です。

また、ファイルのステータスだけでなく、コードの差分や、ブランチ、addやcommitなどのインタラクティブ機能も変えることができます。

color.branch 
color.diff
color.interactive
color.status

詳しくは下のGitの公式ドキュメントを参照してみてください。

2
3
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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?