本文介绍了在主机中获取从主机到分支的更改的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的仓库中,我有一个名为 aq
的分支,我正在处理这个分支。
master
。 将这些提交到 aq
分支的最佳方式是什么?在 master
中创建另一个新分支,并将它与 aq
?
aq 分支,并从
master
分支转帐。 。 git checkout aq
git rebase master
In my repository I have a branch called aq
which I'm working on.
I then committed new work and bugs in master
.
What is the best way to get those commits into the aq
branch? Create another new branch out of master
and merge it with aq
?
解决方案
Check out the aq
branch, and rebase from master
.
git checkout aq
git rebase master
这篇关于在主机中获取从主机到分支的更改的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
07-10 05:18