読了: 約 1 分
日本語でも英語でもいくつか記事があったのですが、
検索するのが面倒なのでメモしておきます。
下記のgithubのhelp見ればOK
git remote add origin git@github.com:username/app.git
をしてremoteの設定をした後に下記のpushしようとしたら起きる問題の対処
git push -u origin master
公開鍵・sshkeyの設定がされていないのが問題
Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights
sshkeyの設定方法
https://help.github.com/articles/generating-ssh-keysPermission denied (publickey).
githubの方で入力して設定し終わったら、下記をする。
ssh -T git@github.com
成功したら下記が表示される。
Hi username! You've successfully authenticated, but GitHub does not provide shell access.
簡単ですが、以上メモ書き。