LoginSignup
1
2

More than 3 years have passed since last update.

[rails]Githubのマスター情報が反映されない、、、

Last updated at Posted at 2020-05-11

結論)新たにブランチを切った上で、下記を実施することで解決しました。
ブランチを切っていなかったことが原因でした。

[マスター情報の反映手順]

①ローカルのmasterブランチへ移動

git checkout master

②リモートのmasterを反映

git pull origin master

③開発中のブランチへ移動

git checkout 開発ブランチ

④maserの内容を取り込む

git merge origin master
1
2
1

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
1
2