2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

github のssh のキー設定

Posted at

なんでメモりたいのか

  • 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

終わり

設定終わってからこれに気付いたので、メモしとくよ・・

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?