我一直在创建一个存储库,现在正将它推送到heroku。我通过heroku获得了导游https://devcenter.heroku.com/articles/git
我检查确保我有git和heroku配置。
git remote -v
我找回了一个heroku配置和一个用于获取和推送的git配置
heroku git:remote -a path name
然而,我回来了“找不到那个应用程序”所以我输入了
heroku apps
我的应用不存在。所以我错过了一些东西。我按照指示操作,可以验证我的遥控器。不确定我错过了什么。
答案 0 :(得分:4)
首先删除heroku远程
git remote rm heroku
再次正确添加
git remote add heroku https://git.heroku.com/sleepy-escarpment-1894.git
然后推送你的应用
git push heroku master