私は周りを見回しましたが、この正確な質問への回答が見られなかったので、ここに行きます:
git checkout master
git checkout -b release1
git checkout -b feature1
git checkout -b feature2
i do work on feature1
、誰かがdo work on feature2
、両方とも origin にプッシュされます
git checkout -b feature1
git pull
git checkout -b feature2
git pull
feature1
質問 1: 個別にチェックアウトして個別にプルすることなく、オリジンから、およびfeature2
それぞれのローカル ブランチに最新のものをプルできますか?
に沿って続行します。. .
git checkout release1
git merge feature1
git merge feature2
他の誰かが取り組んでいfeature2
ます。
質問 2:ブランチを切り替えてプルし、再度切り替えてマージすることなく、オリジンの最新のものfeature2
を現在のブランチにマージしたいと考えています。release1
これは可能ですか?