diff --git a/Software/Application/Git/Git_使用说明.md b/Software/Application/Git/Git_使用说明.md index 00b2160..97e3595 100644 --- a/Software/Application/Git/Git_使用说明.md +++ b/Software/Application/Git/Git_使用说明.md @@ -194,9 +194,17 @@ git 支持 http、https、ssh 格式的 URL 访问。 由于合并分支,或从远程仓库中更新代码产生了额外的 merge 节点,此时可通过 rebase 命令消除这些额外的 merge 节点,使 git 历史的线性更好: + git rebase [-i] [upstream] + +通过增加 -i 参数可进入交互模式。使用 Rebase 还可以将多次提交进行合并,或设置起止点。 + git rebase [-i] [start point] [end point] -通过增加 -i 参数可进入交互模式。使用 Rebase 还可以将多次提交进行合并。 +如果发生了冲突,可以在解决冲突并 add 后,通过: + + git rebase --continue + +命令继续 rebase。 ## 同步 fork 的仓库