我已经通过Rails应用程序成功部署到Heroku,没有问题。但是现在我无法使用对代码所做的更改来更新它。当我尝试时:
git add .
git commit -m "asdasd"
git push heroku master
我被告知:
On branch master
Your branch is up-to-date with 'heroku/master'.
nothing to commit, working tree clean
我尝试了Heroku ps,这给了我
Free dyno hours quota remaining this month: 541h 43m (98%)
Free dyno usage for this app: 0h 0m (0%)
For more information on dyno sleeping and how to upgrade, see:
https://devcenter.heroku.com/articles/dyno-sleeping
=== web (Free): bin/rails server -p $PORT -e $RAILS_ENV (1)
web.1: up 2019/01/18 14:37:10 -0600 (~ 2m ago)
因此似乎没有任何真正的事情发生,并且由于某种原因,无法通过cli到达heroku网站。日志没有显示任何有趣的东西,只是简单地获取页面之类。
唯一的另一件事是,我在heroku网站中更改了该网站的名称,我认为在cli中应该做一些事情,但是现在我已经丢失了。在cli中,应用程序的名称相同,因此我想这不是问题。
有人可以帮忙吗?非常感谢:-)
答案 0 :(得分:0)
您可以在Web界面设置上搜索项目的git存储库URL,并检查是否与本地遥控器相同。
.git / config
[remote "heroku"]
url = https://dir/repo.git
fetch = +refs/heads/*:refs/remotes/heroku/*