git 在树中向前移动分支的起点
好吧,我几乎已经弄清楚了这个 rebase 的事情了。
我能感觉到突破即将到来 - 这是转折点:
我如何进行变基从:
A - - B - - C - - D - - E (HEAD)
|
\ - - F - - G (branch1)
到:
A - - B - - C - - D - - E (HEAD)
|
\ - - F - - G (branch1)
我不只是想将 HEAD~1 合并到分支 1 中,我想我想对分支 1 进行变基,对吧?
我觉得我几乎明白了这一点 - 救命!?
Okay I almost have this rebase thing figured out.
I can feel a breakthrough coming - here is the tipping point:
How do I do a rebase to go from:
A - - B - - C - - D - - E (HEAD)
|
\ - - F - - G (branch1)
To:
A - - B - - C - - D - - E (HEAD)
|
\ - - F - - G (branch1)
I don't just want to merge HEAD~1 into branch1, I think I want to rebase branch1 right?
I feel like I almost grok this - help!?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个标准的
rebase
,没有什么棘手的事情发生。你想要:This is a standard
rebase
, there's nothing tricky going on. You want to:这可以通过 git rebase 来完成:
This can be done with git rebase: