回答編集履歴
1
追記
test
CHANGED
@@ -1,18 +1,20 @@
|
|
1
|
+
① 1行目を実行し、2行目のような内容が返ってくることを確認してください。
|
1
|
-
```
|
2
|
+
```shell
|
2
3
|
ssh -T git@github.com
|
3
4
|
> git@github.com: Permission denied (publickey).
|
4
5
|
```
|
5
6
|
となることを試してください。
|
6
|
-
~/.ssh/config
|
7
|
+
② ~/.ssh/config の作成
|
8
|
+
~/.ssh というディレクトリの下にconfigという名前のファイルを作って下のような内容にしてください
|
7
9
|
IdentityFile は実際の秘密鍵へのパスにしてください
|
8
|
-
```~/.ssh/config
|
10
|
+
```config:~/.ssh/config
|
9
11
|
Host github.com
|
10
12
|
User git
|
11
13
|
IdentityFile ~/.ssh/id_ecdsa
|
12
14
|
|
13
15
|
```
|
14
|
-
その後、ssh接続を試みてください。
|
16
|
+
③ その後、ssh接続を試みてください。
|
15
|
-
```
|
17
|
+
```shell
|
16
18
|
ssh -T git@github.com
|
17
19
|
> Hi <username> You've successfully authenticated, but GitHub does not provide shell access.
|
18
20
|
```
|