すごくメモ帳

すごくほぼメモ帳ぐらいなブログ

GitHub

GitHub 公開鍵認証

パソコン側 ssh-keygen cd .ssh chmod 600 id_rsa echo -e "\n\n" >> config echo Host github.com >> config echo -e " User git" >> config echo -e " Hostname github.com" >> config echo -e " IdentityFile ~/.ssh/id_rsa" >> config cat id_rsa.pub # …