diff --git a/book/07-git-tools/sections/reset.asc b/book/07-git-tools/sections/reset.asc index 42f963ca..944fbfbf 100644 --- a/book/07-git-tools/sections/reset.asc +++ b/book/07-git-tools/sections/reset.asc @@ -179,7 +179,7 @@ image::images/reset-mixed.png[] 如果指定 `--mixed` 选项,`reset` 将会在这时停止。 这也是默认行为,所以如果没有指定任何选项(在本例中只是 `git reset HEAD~`),这就是命令将会停止的地方。 -现在再看一眼上图,理解一下发生的事情:它依然会撤销一上次 `提交`,但还会 _取消暂存_ 所有的东西。 +现在再看一眼上图,理解一下发生的事情:它依然会撤销上一次 `提交`,但还会 _取消暂存_ 所有的东西。 于是,我们回滚到了所有 `git add` 和 `git commit` 的命令执行之前。 ===== 第 3 步:更新工作目录(--hard)