LoginSignup
6
3

More than 3 years have passed since last update.

【Heroku】リリース後、アプリのアップデートをHeroku上アプリに反映させる

Last updated at Posted at 2020-03-06

リリース後、アプリのアップデートをHeroku上アプリに反映させる

1.変更をステージングする

terminal
> git add -A  #-A は変更を加えた全ての変更をステージングさせる
もしくは、
> git add 特定のファイル名  

2.ステージングした変更をコミットする

terminal
> git commit -m "コメント"

1.コミットした変更をHeroku上のアプリにPushする

terminal
> git push heroku master # ←ブランチ名をば

3ステップでできる!
素晴らしい!🎉

6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3