<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">\r
<head>\r
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\r
-<meta name="generator" content="AsciiDoc 7.0.1" />\r
+<meta name="generator" content="AsciiDoc 7.0.2" />\r
<style type="text/css">\r
/* Debug borders */\r
p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {\r
</div>\r
<h2>DESCRIPTION</h2>\r
<div class="sectionbody">\r
-<p>Shows the commit logs. This command internally invokes\r
-<em>git-rev-list</em>, and the command line options are passed to that\r
-command.</p>\r
-<p>This manual page describes only the most frequently used options.</p>\r
+<p>Shows the commit logs.</p>\r
+<p>The command takes options applicable to the <a href=":git-rev-list.html">:git-rev-list(1)</a>\r
+command to control what is shown and how, and options applicable to\r
+the <a href=":git-diff-tree.html">:git-diff-tree(1)</a> commands to control how the change\r
+each commit introduces are shown.</p>\r
+<p>This manual page describes only the most frequently used\r
+options.</p>\r
</div>\r
<h2>OPTIONS</h2>\r
<div class="sectionbody">\r
Show only commits between the named two commits.\r
</p>\r
</dd>\r
+<dt>\r
+-p\r
+</dt>\r
+<dd>\r
+<p>\r
+ Show the change the commit introduces in a patch form.\r
+</p>\r
+</dd>\r
+<dt>\r
+<paths>…\r
+</dt>\r
+<dd>\r
+<p>\r
+ Show only commits that affect the specified paths.\r
+</p>\r
+</dd>\r
</dl>\r
</div>\r
<h2>Examples</h2>\r
<em>gitk</em>\r
</p>\r
</dd>\r
+<dt>\r
+git log -r --name-status release..test\r
+</dt>\r
+<dd>\r
+<p>\r
+ Show the commits that are in the "test" branch but not yet\r
+ in the "release" branch, along with the list of paths\r
+ each commit modifies.\r
+</p>\r
+</dd>\r
</dl>\r
</div>\r
<h2>Author</h2>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 27-Dec-2005 00:16:15 PDT\r
+Last updated 15-Apr-2006 06:17:18 UTC\r
</div>\r
</div>\r
</body>\r
DESCRIPTION
-----------
-Shows the commit logs. This command internally invokes
-'git-rev-list', and the command line options are passed to that
-command.
+Shows the commit logs.
+
+The command takes options applicable to the gitlink::git-rev-list[1]
+command to control what is shown and how, and options applicable to
+the gitlink::git-diff-tree[1] commands to control how the change
+each commit introduces are shown.
+
+This manual page describes only the most frequently used
+options.
-This manual page describes only the most frequently used options.
OPTIONS
-------
<since>..<until>::
Show only commits between the named two commits.
+-p::
+ Show the change the commit introduces in a patch form.
+
+<paths>...::
+ Show only commits that affect the specified paths.
+
Examples
--------
The "--" is necessary to avoid confusion with the *branch* named
'gitk'
+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.
Author
------