我跟随这个tutrial在heroku云上创建了一个facebook应用程序:https://devcenter.heroku.com/articles/facebook但是当我输入$ git push heroku(最后一步)时,我得到了:fatal: 'heroku' does not appear to be a git repositoy
????为什么我得到这个......在教程上我必须得到:
Counting objects: 5, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done, etc.
也是我必须得到的绝对步骤:
$ git commit -am "changed greeting"
[master 0ff313a] changed greeting
1 files changed, 1 insertions(+), 1 deletions(- on screen . I got this:
lib / public / icon。等等 创建模式100644 .etc
答案 0 :(得分:1)
听起来您没有与本地存储库关联的远程git存储库。尝试命令:
git remote -v show
如果您没有类似
的条目heroku git@heroku.com:name-of-your-app.git (push)
其中,您的应用名称是您的Heroku托管应用程序的名称,那么您需要添加一个远程git存储库
git remote add heroku git@heroku.com:name-of-your-app.git
再次使用您的应用程序名称作为您的Heroku应用程序的名称。