fixed a typo

This commit is contained in:
LitoMore
2017-02-08 16:48:44 +08:00
parent 632121d1ff
commit 862173399d

View File

@ -124,7 +124,7 @@ git merge new-feature
## git rebase -i
`-i` 标记运行 `git rebase` 开始交互式 rebase。交互式 rebase 给你在过程中修改单个提交的机会,而不是盲目地将所有提交都移到新的基上。你可以移除、分割提交,更改提交的顺序。它就像是打了鸡血的 `git commit --amendy` 一样。
`-i` 标记运行 `git rebase` 开始交互式 rebase。交互式 rebase 给你在过程中修改单个提交的机会,而不是盲目地将所有提交都移到新的基上。你可以移除、分割提交,更改提交的顺序。它就像是打了鸡血的 `git commit --amend` 一样。
### 用法