diff --git a/Software/Applications/Git/Git_使用说明.md b/Software/Applications/Git/Git_使用说明.md index 5e37986..f487ea0 100644 --- a/Software/Applications/Git/Git_使用说明.md +++ b/Software/Applications/Git/Git_使用说明.md @@ -340,9 +340,9 @@ git rebase --continue 也可以使用 rebase 直接从另一分支合并代码,从而避免像 merge 那样增加额外节点(相当于 merge 之后再进行一次 rebase 操作): ```bash -# 从谋 branch rebase 合并到当前分支 +# 从 from branch rebase 合并到当前分支 git rebase -# 从谋 from branch rebase 合并到 to branch +# 从 from branch rebase 合并到 to branch git rebase ```