git rebase
Posted N神3
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git rebase相关的知识,希望对你有一定的参考价值。
git rebase用于把一个分支的修改合并到当前分支
git merge <branch_name>也是合并分支,与git rebase不同的是git merge会合并两个分支产生一个新commit对象【拥有两个parent】。
git rebase 【rebase】顾名思义重新定义起点,即重新定义分支指向commit对象。从而改变commit history。
以上是关于git rebase的主要内容,如果未能解决你的问题,请参考以下文章
Git 常用操作 - git clone/git checkout -b/git diff/git push/git pull