web-dev-qa-db-ja.com

herokuでアプリケーションを更新する方法

Herokuは初めてです。非常に単純なRailsアプリを作成し、herokuにデプロイしました。

どうすれば変更をgitにコミットできますか?

23
Oded Harth

実行する必要があります:

git add .
git commit -m "updated the header and footer"
git Push heroku master
39
Kevin Sylvestre

それはただのgitプッシュです

git Push heroku master
3
Taylor Bird

これがお役に立てば幸いです。 3つのステップ:

git add .    
git commit -m "make changes"    
git Push heroku master
2
Himang