how to update application on heroku

后端 未结 4 831
你的背包
你的背包 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条回答
  • This was what I did to update mine.. hope it will work for you first yo have to run dis command to check modified files git status Take note of the modified files (it could be a path or just a file name) git add <file name or path> run the above command for all the modified file and then commit git commit -m "your message" and now push git push heroku master

    0 讨论(0)
  • 2020-12-24 03:59

    It's just a git push

    git push heroku master
    
    0 讨论(0)
  • 2020-12-24 04:05

    You need to perform:

    git add .
    git commit -m "updated the header and footer"
    git push heroku master
    
    0 讨论(0)
  • 2020-12-24 04:12

    I hope this would help. Three steps:

    git add .    
    git commit -m "make changes"    
    git push heroku master
    
    0 讨论(0)
提交回复
热议问题