嵌ったのでメモ。 ■OS Windows 現象 「git push heroku master」で以下のエラー。 $ git push heroku master Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 原因 SSH公開鍵がGitHub用しか登録されていなかった 対処方法 1. ~/.ssh/config を作成 以下の内容を書いて、configファイルを作成 Host github.com User git port 22 Hostname github.com IdentityFile ~/.ssh/github_rs