From 3751dea1c72a015df4bfe81cbe50230f42990369 Mon Sep 17 00:00:00 2001 From: "rick.chan" Date: Tue, 18 Aug 2020 18:27:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E6=B3=A8=E9=87=8A.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: rick.chan --- Software/Applications/Git/Git_使用说明.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ```