git常用命令2--- git rebase
Posted 学会思考
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git常用命令2--- git rebase相关的知识,希望对你有一定的参考价值。
git rebase:简单而言就是把某个分支上的提交commit嫁接到另一个commit的后面,在这个过程中这些commit的base相对就改变了,也就叫变基。
git rebase <upstream> <branch>
如果提供了branch会首先checkout到这个branch上,然后再进行rebase操作;
git rebase master topic
git rebase master
git rebase --onto <newbase> <upstream> <branch>
以上是关于git常用命令2--- git rebase的主要内容,如果未能解决你的问题,请参考以下文章