从另一个分支更新 github 个分支
Update github branch from another branch
我从另一个分支创建了一个分支。然后我回到以前的分支并进行处理。现在我已经切换到第二个分支。但是这第二个分支没有第一个分支的新变化。我只想从第一个分支更新第二个分支而不删除任何一个。
But this second branch don't have the new changes of first branch
仅切换到第二个分支不足以使所述分支反映在第一个分支中提交的更改。
您需要 git merge branch1
或者,如果您是唯一一个致力于 branch2
的人:git rebase branch1
(如果您想保持线性历史记录)。
然后,只有那时,您会看到 branch2
中的 branch1
变化。
⇒ OP Waqar Ahmed proposes in :
I have solved this issue but checking out branch2
and pull the branch1
我从另一个分支创建了一个分支。然后我回到以前的分支并进行处理。现在我已经切换到第二个分支。但是这第二个分支没有第一个分支的新变化。我只想从第一个分支更新第二个分支而不删除任何一个。
But this second branch don't have the new changes of first branch
仅切换到第二个分支不足以使所述分支反映在第一个分支中提交的更改。
您需要 git merge branch1
或者,如果您是唯一一个致力于 branch2
的人:git rebase branch1
(如果您想保持线性历史记录)。
然后,只有那时,您会看到 branch2
中的 branch1
变化。
⇒ OP Waqar Ahmed proposes in
I have solved this issue but checking out
branch2
and pull thebranch1