Я нажал мою версию главы 5 Sample_App на git, а затем, когда я 'git нажмите 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.
Я прочитал некоторые из похожих вопросов stackoverflow, и поэтому я знаю, чтобы посмотреть 'git remote -v':
heroku [email protected]:sample_app.git (fetch)
heroku [email protected]:sample_app.git (push)
origin [email protected]:jeffbenner/sample_app.git (fetch)
origin [email protected]:jeffbenner/sample_app.git (push)
Я попытался удалить heroku и повторно нажать - я получаю то же сообщение об ошибке.
Я посмотрел на git config -l ':
user.name=jeffbenner
[email protected]
alias.co=checkout
push.defaults=simple
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
core.ignorecase=true
core.precomposeunicode=false
[email protected]:jeffbenner/sample_app.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master
[email protected]:sample_app.git
remote.heroku.fetch=+refs/heads/*:refs/remotes/heroku/*
Я не могу понять, почему я не могу нажать на Хероку. Я перешел в мои учетные записи Github и Heroku через CLI. Любое направление было бы высоко оценено.