修正 Rebase 部分。

Signed-off-by: ithink.chan <chenyang@autoai.com>
This commit is contained in:
ithink.chan 2019-08-05 13:29:21 +08:00
parent 6e90246ba7
commit 4553e6d62a
1 changed files with 9 additions and 1 deletions

View File

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