前提・実現したいこと
cmderを使用してコンソール環境を作成
参考サイトを元に設定を実装してみたが、gitコマンドの出力結果が白色しか出ない
発生している問題・エラーメッセージ
gitコマンドの出力結果の文字色が白色しか出ない
見やすいよう色付けしたい。
試したこと
下記サイトを元に設定を実施
参考サイト
1枚目の写真にてgit log --graph
と入力しており、ログが色付けされた状態で表示されている。
設定完了後同じコマンドを入力したが、文字色が白色しか出なかった。
2020.06.02 17:55
gitのコマンドに対して自動的に色を付ける$ git config --global color.ui true
を適用してみたが、変わらず。
現在のgitconfig状態
git config -l
の出力結果
core.symlinks=true
core.autocrlf=input
core.fscache=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
help.format=html
rebase.autosquash=true
http.sslcainfo=C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
http.sslbackend=openssl
diff.astextplain.textconv=astextplain
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge --skip -- %f
filter.lfs.process=git-lfs filter-process --skip
filter.lfs.required=true
credential.helper=manager
user.name=〇〇
user.email=〇〇@gmail.com
color.ui=true
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true
core.symlinks=false
core.ignorecase=true
remote.origin.url=https://git-codecommit.ap-northeast-1.amazonaws.com/〇〇
remote.origin.fetch=+refs/heads/:refs/remotes/origin/
branch.master.remote=origin
branch.master.merge=refs/heads/master
branch.feature/〇〇.remote=origin
branch.feature/〇〇.merge=refs/heads/feature/〇〇
color.ui=true
あなたの回答
tips
プレビュー