なんでメモりたいのか
- github のssh設定していたら、何度作り直しても通らなかった!
- キーの作り方は公式見たほうがいいのでこちら
なんで通らなかったのか
ファイル名を変更していたから!!
設定
キー作成
ssh-keygen -t ed25519 -C "your_email@example.com"
~/.ssh/config
のファイルを作成し、以下を追加。
ファイル名は、自分のファイル名に変更する。
~/.ssh/config
Host github github.com
HostName github.com
IdentityFile ~/.ssh/id_github
User git
接続確認
ssh -T git@github.com
「Hi snowdog! You've successfully authenticated, but GitHub does not provide shell access.」って言われたらOK
終わり
設定終わってからこれに気付いたので、メモしとくよ・・