Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions book/02-git-basics/sections/viewing-history.asc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
在提交了若干更新,又或者克隆了某个项目之后,你也许想回顾下提交历史。
完成这个任务最简单而又有效的工具是 `git log` 命令。

我们使用一个非常简单的 ``simplegit'' 项目作为示例。
我们使用一个非常简单的 "simplegit" 项目作为示例。
运行下面的命令获取该项目:

[source,console]
Expand Down Expand Up @@ -246,7 +246,7 @@ $ git log --since=2.weeks

[NOTE]
====
你可以指定多个 `--author` 和 `--grep` 搜索条件,这样会只输出匹配 *任意*
你可以指定多个 `--author` 和 `--grep` 搜索条件,这样会只输出匹配 *任意*
`--author` 模式和 *任意* `--grep` 模式的提交。然而,如果你添加了 `--all-match` 选项,
则只会输出匹配 *所有* `--grep` 模式的提交。
====
Expand Down
Loading