how to update application on heroku

后端 未结 4 832
你的背包
你的背包 2020-12-24 03:36

I am new to heroku. I created a very simple rails app, and deployed it to heroku.

how can I commit the changes to git?

4条回答
  •  温柔的废话
    2020-12-24 04:05

    You need to perform:

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

提交回复
热议问题