teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

3

書式修正

2020/06/02 09:16

投稿

vnsa7221
vnsa7221

スコア348

title CHANGED
File without changes
body CHANGED
@@ -12,7 +12,14 @@
12
12
  下記サイトを元に設定を実施
13
13
  [参考サイト](https://qiita.com/thrzn41/items/7dd3b1ec5e50bae9f03b)
14
14
 
15
+ 1枚目の写真にて```git log --graph```と入力しており、ログが色付けされた状態で表示されている。
16
+ 設定完了後同じコマンドを入力したが、文字色が白色しか出なかった。
15
17
 
18
+
19
+ 2020.06.02 17:55
20
+ gitのコマンドに対して自動的に色を付ける```$ git config --global color.ui true```を適用してみたが、変わらず。
21
+
22
+
16
23
  ### 現在のgitconfig状態
17
24
  ```git config -l```の出力結果
18
25
 
@@ -48,11 +55,4 @@
48
55
  branch.master.merge=refs/heads/master
49
56
  branch.feature/〇〇.remote=origin
50
57
  branch.feature/〇〇.merge=refs/heads/feature/〇〇
51
- color.ui=true
58
+ color.ui=true
52
-
53
- 1枚目の写真にて```git log --graph```と入力しており、ログが色付けされた状態で表示されている。
54
- 設定完了後同じコマンドを入力したが、文字色が白色しか出なかった。
55
-
56
-
57
- 2020.06.02 17:55
58
- gitのコマンドに対して自動的に色を付ける```$ git config --global color.ui true```を適用してみたが、変わらず。

2

gitconfigの状態を追加

2020/06/02 09:16

投稿

vnsa7221
vnsa7221

スコア348

title CHANGED
File without changes
body CHANGED
@@ -12,6 +12,44 @@
12
12
  下記サイトを元に設定を実施
13
13
  [参考サイト](https://qiita.com/thrzn41/items/7dd3b1ec5e50bae9f03b)
14
14
 
15
+
16
+ ### 現在のgitconfig状態
17
+ ```git config -l```の出力結果
18
+
19
+ > core.symlinks=true
20
+ core.autocrlf=input
21
+ core.fscache=true
22
+ color.diff=auto
23
+ color.status=auto
24
+ color.branch=auto
25
+ color.interactive=true
26
+ help.format=html
27
+ rebase.autosquash=true
28
+ http.sslcainfo=C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
29
+ http.sslbackend=openssl
30
+ diff.astextplain.textconv=astextplain
31
+ filter.lfs.clean=git-lfs clean -- %f
32
+ filter.lfs.smudge=git-lfs smudge --skip -- %f
33
+ filter.lfs.process=git-lfs filter-process --skip
34
+ filter.lfs.required=true
35
+ credential.helper=manager
36
+ user.name=〇〇
37
+ user.email=〇〇@gmail.com
38
+ color.ui=true
39
+ core.repositoryformatversion=0
40
+ core.filemode=false
41
+ core.bare=false
42
+ core.logallrefupdates=true
43
+ core.symlinks=false
44
+ core.ignorecase=true
45
+ remote.origin.url=https://git-codecommit.ap-northeast-1.amazonaws.com/〇〇
46
+ remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
47
+ branch.master.remote=origin
48
+ branch.master.merge=refs/heads/master
49
+ branch.feature/〇〇.remote=origin
50
+ branch.feature/〇〇.merge=refs/heads/feature/〇〇
51
+ color.ui=true
52
+
15
53
  1枚目の写真にて```git log --graph```と入力しており、ログが色付けされた状態で表示されている。
16
54
  設定完了後同じコマンドを入力したが、文字色が白色しか出なかった。
17
55
 

1

試したことを更新

2020/06/02 09:15

投稿

vnsa7221
vnsa7221

スコア348

title CHANGED
File without changes
body CHANGED
@@ -13,4 +13,8 @@
13
13
  [参考サイト](https://qiita.com/thrzn41/items/7dd3b1ec5e50bae9f03b)
14
14
 
15
15
  1枚目の写真にて```git log --graph```と入力しており、ログが色付けされた状態で表示されている。
16
- 設定完了後同じコマンドを入力したが、文字色が白色しか出なかった。
16
+ 設定完了後同じコマンドを入力したが、文字色が白色しか出なかった。
17
+
18
+
19
+ 2020.06.02 17:55
20
+ gitのコマンドに対して自動的に色を付ける```$ git config --global color.ui true```を適用してみたが、変わらず。