Mac編
- GitHubのアカウントを登録
- Gravaterでプロフィール画像を登録
- MacのターミナルからSSH Keyを生成する
- 生成したSSH Keyをクリップボードにコピー
- GitHubの管理画面のSSH Keysにコピペして保存
ここまでやればGitHub上の自分のリポジトリにpushできるようになる
MacでSSH Keyを生成
passphrase(パスフレーズ)は心配性以外は無記入でいい
$ ssh-keygen Generating public/private rsa key pair. Enter file in which to save the key (/Users/<user_name>/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /Users/<user_name>/.ssh/id_rsa. Your public key has been saved in /Users/<user_name>/.ssh/id_rsa.pub.