diff --git a/Software/Applications/Git/Git_使用说明.md b/Software/Applications/Git/Git_使用说明.md index dd62d7d..5e37986 100644 --- a/Software/Applications/Git/Git_使用说明.md +++ b/Software/Applications/Git/Git_使用说明.md @@ -324,7 +324,11 @@ git rebase [-i] [upstream] 通过增加 -i 参数可进入交互模式。使用 Rebase 还可以将多次提交进行合并,或设置起止点。 ```bash -git rebase [-i] [start commit id] [end commit id] +git rebase [-i] +# 合并最后 n 次提交 +git rebase [-i] HEAD~ +# 合并某个 commit id 以来的提交 +git rebase [-i] ``` 如果发生了冲突,可以在解决冲突并 add 后,通过: