这是indexloc提供的服务,不要输入任何密码
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
6 changes: 5 additions & 1 deletion pro-git/chapter-02/log-output.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,11 @@ For example, to see commits in the Git repository [^1] that:
- not merge commits

```shell
git log --pretty=format:"%h - %an, %ad : %s" --author="Junio C Hamano" --since="2008-10-01" --before="2008-11-01" --no-merges -- t/
git log --pretty=format:"%h - %an, %ad : %s" \
--author="Junio C Hamano" \
--since="2008-10-01" \
--before="2008-11-01" \
--no-merges -- t/

5610e3b031 - Junio C Hamano, Sun Oct 19 22:51:17 2008 -0700 : Fix testcase failure when extended attributes are in use
acd3b9eca8 - Junio C Hamano, Fri Oct 17 15:44:39 2008 -0700 : Enhance hold_lock_file_for_{update,append}() API
Expand Down