2005-09-08 02:26:23 +02:00
|
|
|
git-log(1)
|
|
|
|
==========
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2005-09-08 02:26:23 +02:00
|
|
|
git-log - Show commit logs
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-10-11 01:01:32 +02:00
|
|
|
'git-log' <option>...
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2006-04-14 21:59:09 +02:00
|
|
|
Shows the commit logs.
|
|
|
|
|
2006-04-28 15:15:03 +02:00
|
|
|
The command takes options applicable to the gitlink:git-rev-list[1]
|
2006-04-14 21:59:09 +02:00
|
|
|
command to control what is shown and how, and options applicable to
|
2006-04-28 15:15:03 +02:00
|
|
|
the gitlink:git-diff-tree[1] commands to control how the change
|
2006-04-14 21:59:09 +02:00
|
|
|
each commit introduces are shown.
|
|
|
|
|
2006-04-28 15:15:03 +02:00
|
|
|
This manual page describes only the most frequently used options.
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-11-17 06:32:44 +01:00
|
|
|
--pretty=<format>::
|
2005-08-15 02:24:36 +02:00
|
|
|
Controls the way the commit log is formatted.
|
|
|
|
|
|
|
|
--max-count=<n>::
|
|
|
|
Limits the number of commits to show.
|
|
|
|
|
|
|
|
<since>..<until>::
|
|
|
|
Show only commits between the named two commits.
|
|
|
|
|
2006-04-14 21:59:09 +02:00
|
|
|
-p::
|
|
|
|
Show the change the commit introduces in a patch form.
|
|
|
|
|
|
|
|
<paths>...::
|
|
|
|
Show only commits that affect the specified paths.
|
|
|
|
|
2005-08-15 02:24:36 +02:00
|
|
|
|
2005-10-31 05:05:32 +01:00
|
|
|
Examples
|
|
|
|
--------
|
|
|
|
git log --no-merges::
|
|
|
|
|
|
|
|
Show the whole commit history, but skip any merges
|
|
|
|
|
|
|
|
git log v2.6.12.. include/scsi drivers/scsi::
|
|
|
|
|
|
|
|
Show all commits since version 'v2.6.12' that changed any file
|
|
|
|
in the include/scsi or drivers/scsi subdirectories
|
|
|
|
|
|
|
|
git log --since="2 weeks ago" -- gitk::
|
|
|
|
|
|
|
|
Show the changes during the last two weeks to the file 'gitk'.
|
|
|
|
The "--" is necessary to avoid confusion with the *branch* named
|
|
|
|
'gitk'
|
|
|
|
|
2006-04-14 21:59:09 +02:00
|
|
|
git log -r --name-status release..test::
|
|
|
|
|
|
|
|
Show the commits that are in the "test" branch but not yet
|
|
|
|
in the "release" branch, along with the list of paths
|
|
|
|
each commit modifies.
|
2005-10-31 05:05:32 +01:00
|
|
|
|
2005-08-15 02:24:36 +02:00
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Linus Torvalds <torvalds@osdl.org>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|
2005-08-15 02:24:36 +02:00
|
|
|
|