gpt4 book ai didi

Git:如何 rebase 到特定的提交?

转载 作者:IT王子 更新时间:2023-10-29 01:20:53 25 4
gpt4 key购买 nike

我想 rebase 到一个特定的提交,而不是另一个分支的 HEAD:

A --- B --- C          master
\
\-- D topic

A --- B --- C          master
\
\-- D topic

代替

A --- B --- C          master
\
\-- D topic

我怎样才能做到这一点?

最佳答案

您可以通过在您喜欢的提交上创建临时分支然后以简单形式使用 rebase 来避免使用 --onto 参数:

git branch temp master^
git checkout topic
git rebase temp
git branch -d temp

关于Git:如何 rebase 到特定的提交?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7744049/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com