美文网首页
Git rebase --onto用法

Git rebase --onto用法

作者: Mokey_ | 来源:发表于2021-04-27 11:19 被阅读0次

命令:git rebase --onto [Branch]  [commit_id1]  [commit_id2]

用法:有两个branch分支(branchA 和 branchB),需要将branchB中的某几个commit 合并到branchA中。

        1、分支checkout到branchB

        2、执行命令:git rebase --onto [branchA]  [commit_id1]  [commit_id2],此时branch处于游离状态(可以使用git branch查看分支)

        3、执行命令:git checkout -b [new_branch] ,得到一个新分支new_branch,此分支即为想得到的分支

        4、将new_branch合并到branchA上,即完成

          

相关文章

  • git rebase --onto用法

    例子:合并一段commits 1. 把feature_client的C5 - C6 -C7合并到master gi...

  • Git rebase --onto用法

    命令:git rebase --onto [Branch] [commit_id1] [commit_id2] 用...

  • git rebase --onto用法(2)

    git base --onto branch C1 C2是一个左开右闭的操作也就是上述指令只合并C2,不合并C1 ...

  • git rebase --onto用法(3)

    例子:修改C1的一处错误 打赏 如果这篇文章解决了您的问题,让我买根烟抽抽。

  • Git常用操作

    push/pull merge Rebase onto reset revert

  • git rebase 用法

    git rebase Git rebase 与 Git merge 的区别 如果经常多人协作开发的话,可能都很熟悉...

  • 分支切割机 git rebase onto

    场景 首先我们来看一个场景 正常情况的我们分支合并之后应该就像这样的 对于这样的分支合并大家一定没有异议。 那么碰...

  • Git命令rebase

    用法1: 用法2:--onto 针对两个分支间的修改切片 用法3:--onto 针对特定 commit 切片

  • 2020-06-18

    GCD 源码 Git - rebase 用法小结 ReactNative源码解析——通信机制详解(1/2) Rea...

  • git8~rebase

    2019.06.25 git rebase git stash git pull --rebase git sta...

网友评论

      本文标题:Git rebase --onto用法

      本文链接:https://www.haomeiwen.com/subject/ymyurltx.html