memorandum

IT技術の習得を記録します

githubの公開鍵を作成しgithubに登録

Generating a new SSH key and adding it to the ssh-agent - User Documentation

#Open Terminal.

#Paste the text below, substituting in your GitHub email address.

ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
#This creates a new ssh key, using the provided email as a label.

#Generating public/private rsa key pair.
#When you're prompted to "Enter a file in which to save the key," press Enter. This accepts the default file location.
#ここでなんの公開鍵がわかるようにid_rsa(ファイルの置き場所)の部分を書き換える
Enter a file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter]
#At the prompt, type a secure passphrase. For more information, see "Working with SSH key passphrases".

#Enter passphrase (empty for no passphrase): [Type a passphrase]
#Enter same passphrase again: [Type passphrase again]
pbcopy < ~/.ssh/ファイルの置き場所pub

githubがどのsshを使用するか設定する .sshの中にconfigというファイルを作成し下記の内容を記載する

Host github.com
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_github