修正注释.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2020-08-18 18:27:39 +08:00
parent bdef8070e1
commit 3751dea1c7
1 changed files with 2 additions and 2 deletions

View File

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