目前,我正在使用Master中提供的Staging Branch。 我现在在master和Staging中可用的所有更改。我还在开始时在master中创建了一个额外的Integration新分支。我没有使用此分支启动所以它有一个新的副本。
现在我只需要在我的新分支中复制所有暂存分支更改。
我该怎么做?
答案 0 :(得分:0)
我还在开头
中在master中创建了一个额外的Integration新分支
因此,Integration不是从当前的master
HEAD开始,而是从master
中的旧提交开始。
我没有在分段中使用过这个分支,因此它有新的副本。
如果尚未推送:
git checkout integration
git reset --hard master
我需要将所有暂存分支更改转换为集成分支。
git merge staging