parent
bdef8070e1
commit
3751dea1c7
|
@ -340,9 +340,9 @@ git rebase --continue
|
||||||
也可以使用 rebase 直接从另一分支合并代码,从而避免像 merge 那样增加额外节点(相当于 merge 之后再进行一次 rebase 操作):
|
也可以使用 rebase 直接从另一分支合并代码,从而避免像 merge 那样增加额外节点(相当于 merge 之后再进行一次 rebase 操作):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 从谋 branch rebase 合并到当前分支
|
# 从 from branch rebase 合并到当前分支
|
||||||
git rebase <from branch>
|
git rebase <from branch>
|
||||||
# 从谋 from branch rebase 合并到 to branch
|
# 从 from branch rebase 合并到 to branch
|
||||||
git rebase <from branch> <to branch>
|
git rebase <from branch> <to branch>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue