質問編集履歴
4
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -88,7 +88,7 @@
|
|
88
88
|
|
89
89
|
|
90
90
|
|
91
|
-
### ご回答を受けてからの変更点
|
91
|
+
### ご回答を受けてからの変更点とエラー
|
92
92
|
|
93
93
|
|
94
94
|
|
3
ご回答を受けてからの変更点
test
CHANGED
File without changes
|
test
CHANGED
@@ -88,6 +88,54 @@
|
|
88
88
|
|
89
89
|
|
90
90
|
|
91
|
+
### ご回答を受けてからの変更点
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
ご回答を受けてHTTPSからSSHへの切り替えをしたところ、pushした時のエラーメッセージが以下のように変わりました。
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
これは、github側の設定に問題があるということでしょうか。
|
100
|
+
|
101
|
+
```bash
|
102
|
+
|
103
|
+
$ git remote -v
|
104
|
+
|
105
|
+
origin git@github.com:sample/sample.io.git (fetch)
|
106
|
+
|
107
|
+
origin git@github.com:sample/sample.io.git (push)
|
108
|
+
|
109
|
+
$ git push origin branch-name
|
110
|
+
|
111
|
+
```
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
エラー文
|
116
|
+
|
117
|
+
```
|
118
|
+
|
119
|
+
/Users/username/.ssh/config: line 1: Bad configuration option: ---
|
120
|
+
|
121
|
+
/Users/username/.ssh/config: line 10: Bad configuration option: ---
|
122
|
+
|
123
|
+
/Users/username/.ssh/config: terminating, 2 bad configuration options
|
124
|
+
|
125
|
+
fatal: Could not read from remote repository.
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
Please make sure you have the correct access rights
|
130
|
+
|
131
|
+
and the repository exists.
|
132
|
+
|
133
|
+
```
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
|
138
|
+
|
91
139
|
### 補足情報(FW/ツールのバージョンなど)
|
92
140
|
|
93
141
|
ターミナル バージョン2.10
|
2
エラーメッセージの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
remote: Permission to reponame.git denied to first_accout.
|
22
22
|
|
23
|
-
fatal: unable to access '
|
23
|
+
fatal: unable to access 'https://github.com/sample/sample.github.io.git/':
|
24
24
|
|
25
25
|
The requested URL returned error: 403
|
26
26
|
|
1
試したことの文体変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -74,7 +74,17 @@
|
|
74
74
|
|
75
75
|
```
|
76
76
|
|
77
|
+
上記のコマンドで
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
・`global`には1つめのアカウントに何も設定されていないこと
|
82
|
+
|
77
|
-
|
83
|
+
・`local`には使用した2つめのアカウント`second_account`
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
が設定されていることを確認しました。
|
78
88
|
|
79
89
|
|
80
90
|
|