Pushing app to heroku problem

前端 未结 4 464
时光取名叫无心
时光取名叫无心 2020-12-12 08:27

I am trying to push my app to heroku and I get the following message:

$ heroku create
Creating electric-meadow-15..... done
Created http://electric-meadow-1         


        
4条回答
  •  感情败类
    2020-12-12 09:19

    Type this and I think you'll see the problem:

    git remote -v
    

    Fix it like this:

    git remote rm heroku
    git remote add heroku git@heroku.com:electric-meadow-15.git
    

提交回复
热议问题