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
|
2007-02-09 00:22:21 +01:00
|
|
|
the gitlink:git-diff-tree[1] commands to control how the changes
|
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
|
|
|
|
-------
|
2006-11-22 00:49:15 +01:00
|
|
|
|
|
|
|
include::pretty-formats.txt[]
|
2005-08-15 02:24:36 +02:00
|
|
|
|
2007-01-15 03:23:22 +01:00
|
|
|
-<n>::
|
2005-08-15 02:24:36 +02:00
|
|
|
Limits the number of commits to show.
|
|
|
|
|
|
|
|
<since>..<until>::
|
2006-12-30 11:21:48 +01:00
|
|
|
Show only commits between the named two commits. When
|
|
|
|
either <since> or <until> is omitted, it defaults to
|
|
|
|
`HEAD`, i.e. the tip of the current branch.
|
2007-01-18 03:08:09 +01:00
|
|
|
For a more complete list of ways to spell <since>
|
|
|
|
and <until>, see "SPECIFYING REVISIONS" section in
|
|
|
|
gitlink:git-rev-parse[1].
|
2005-08-15 02:24:36 +02:00
|
|
|
|
2007-03-27 21:51:13 +02:00
|
|
|
--first-parent::
|
|
|
|
Follow only the first parent commit upon seeing a merge
|
|
|
|
commit. This option gives a better overview of the
|
|
|
|
evolution of a particular branch.
|
|
|
|
|
2006-04-14 21:59:09 +02:00
|
|
|
-p::
|
|
|
|
Show the change the commit introduces in a patch form.
|
|
|
|
|
2007-04-16 00:36:06 +02:00
|
|
|
-g, \--walk-reflogs::
|
|
|
|
Show commits as they were recorded in the reflog. The log contains
|
|
|
|
a record about how the tip of a reference was changed.
|
|
|
|
See also gitlink:git-reflog[1].
|
|
|
|
|
2007-05-11 00:09:38 +02:00
|
|
|
--decorate::
|
|
|
|
Print out the ref names of any commits that are shown.
|
|
|
|
|
2006-04-14 21:59:09 +02:00
|
|
|
<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
|
|
|
|
|
2006-05-05 21:05:24 +02:00
|
|
|
git log --since="2 weeks ago" \-- gitk::
|
2005-10-31 05:05:32 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
2006-12-30 11:22:38 +01:00
|
|
|
Discussion
|
|
|
|
----------
|
|
|
|
|
|
|
|
include::i18n.txt[]
|
|
|
|
|
|
|
|
|
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
|
|
|
|