Sample_App の第 5 章バージョンを git にプッシュし、「git push heroku」を実行すると、次のようになります。
warning: push.default is unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the current behavior after the default changes, use:
git config --global push.default matching
To squelch this message and adopt the new behavior now, use:
git config --global push.default simple
See 'git help config' and search for 'push.default' for further information.
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)
! No such app as sample_app.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
同様のスタックオーバーフローの質問をいくつか読んだので、「git remote -v」を確認することを知っています。
heroku git@heroku.com:sample_app.git (fetch)
heroku git@heroku.com:sample_app.git (push)
origin git@github.com:jeffbenner/sample_app.git (fetch)
origin git@github.com:jeffbenner/sample_app.git (push)
heroku を削除して再プッシュしようとしましたが、同じエラー メッセージが表示されます。
「git config -l」を見ました:
user.name=jeffbenner
user.email=xxxxx@gmail.com
alias.co=checkout
push.defaults=simple
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
core.ignorecase=true
core.precomposeunicode=false
remote.origin.url=git@github.com:jeffbenner/sample_app.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master
remote.heroku.url=git@heroku.com:sample_app.git
remote.heroku.fetch=+refs/heads/*:refs/remotes/heroku/*
Heroku にプッシュできない理由がわかりません。CLI を使用して、Github と Heroku の両方のアカウントに再ログインしました。どんな方向性でも大歓迎です。