gpt4 book ai didi

git rebase 不工作

转载 作者:太空狗 更新时间:2023-10-29 14:14:08 25 4
gpt4 key购买 nike

我在我的本地仓库中做了一些提交,并将它们也推送到在线仓库中。

然后我意识到有很多提交,我想把它们压缩成很少的。最好从second last onefirst one。即保持当前提交并压缩所有其他我的提交。

当我做的时候

 git rebase -i origin/branch_name

带有 noop 的窗口 pop 。我没有看到任何 pick。我该怎么办?

最佳答案

当我收到 noop 消息时,这通常意味着 git rebase -i 的参数中使用的分支在 check out 分支之前。

git log A..B
# prints the commits between A's head and B's head

git log B..A
# prints nothing

git status
# On branch A

git rebase -i B
# got 'noop' because there are no commits in the log above

在这种情况下,它有助于交换两个受影响的分支。

git checkout B
git rebase -i A

关于git rebase 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18653323/

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