6 git-log - Show commit logs
15 Shows the commit logs. This command internally invokes
16 'git-rev-list', and the command line options are passed to that
19 This manual page describes only the most frequently used options.
24 Controls the way the commit log is formatted.
27 Limits the number of commits to show.
30 Show only commits between the named two commits.
37 Show the whole commit history, but skip any merges
39 git log v2.6.12.. include/scsi drivers/scsi::
41 Show all commits since version 'v2.6.12' that changed any file
42 in the include/scsi or drivers/scsi subdirectories
44 git log --since="2 weeks ago" -- gitk::
46 Show the changes during the last two weeks to the file 'gitk'.
47 The "--" is necessary to avoid confusion with the *branch* named
53 Written by Linus Torvalds <torvalds@osdl.org>
57 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
61 Part of the gitlink:git[7] suite