comment mettre à jour l'application sur heroku

Je suis nouveau à heroku. J'ai créé une application rails très simple et l'ai déployée sur heroku.

Comment puis-je valider les modifications sur git?

22
demandé sur Oded Harth 2011-03-02 19:12:08

3 réponses

, Vous devez effectuer:

git add .
git commit -m "updated the header and footer"
git push heroku master
37
répondu Kevin Sylvestre 2011-03-02 16:26:41

C'est juste un push git

git push heroku master
3
répondu Taylor Bird 2011-03-02 16:14:34

J'espère que cela aiderait. Trois étapes:

git add .    
git commit -m "make changes"    
git push heroku master
1
répondu Himang 2017-10-06 08:49:45