Gitで作業中のブランチにmasterの最新の変更を取り込むには、rebase を使います。
まずローカルのmasterブランチを最新にする。
git checkout master git pull origin master
作業ブランチに戻ってrebaseする。
git checkout 作業ブランチ名 git rebase master
以上です。
Gitで作業中のブランチにmasterの最新の変更を取り込むには、rebase を使います。
まずローカルのmasterブランチを最新にする。
git checkout master git pull origin master
作業ブランチに戻ってrebaseする。
git checkout 作業ブランチ名 git rebase master
以上です。