如何在heroku上更新应用程序

我是heroku的新手。 我创建了一个非常简单的rails应用程序,并将其部署到heroku。

我怎样才能将更改提交给git?

你需要执行:

git add . git commit -m "updated the header and footer" git push heroku master 

这只是一个git推

 git push heroku master 

我希望这会有所帮助。 三个步骤:

 git add . git commit -m "make changes" git push heroku master