<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/Documentation/git-log.txt, branch v2.3.2</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v2.3.2</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v2.3.2'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2013-12-03T19:41:41Z</updated>
<entry>
<title>Merge branch 'jj/log-doc'</title>
<updated>2013-12-03T19:41:41Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2013-12-03T19:41:40Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=a2cb44c61de8e1dba4a0b758141b522b2b258e9a'/>
<id>urn:sha1:a2cb44c61de8e1dba4a0b758141b522b2b258e9a</id>
<content type='text'>
Mark-up fixes.

* jj/log-doc:
  Documentation/git-log.txt: mark-up fix and minor rephasing
  Documentation/git-log: update "--log-size" description
</content>
</entry>
<entry>
<title>Documentation/git-log.txt: mark-up fix and minor rephasing</title>
<updated>2013-11-13T22:09:14Z</updated>
<author>
<name>Jason St. John</name>
<email>jstjohn@purdue.edu</email>
</author>
<published>2013-11-13T06:21:49Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=b20cc13e73fcec3d80eed4d9fc7f6ee8acc206ac'/>
<id>urn:sha1:b20cc13e73fcec3d80eed4d9fc7f6ee8acc206ac</id>
<content type='text'>
 - typeset options, commands, and paths in monospace;
 - typeset references to sections with emphasis;
 - replace some double quotes with proper AsciiDoc quotes (e.g. ``foo'');
 - use title case when referring to section headings.

Signed-off-by: Jason St. John &lt;jstjohn@purdue.edu&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Documentation/git-log: update "--log-size" description</title>
<updated>2013-11-13T22:06:17Z</updated>
<author>
<name>Jason St. John</name>
<email>jstjohn@purdue.edu</email>
</author>
<published>2013-11-13T06:21:48Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=c20e6fb1df0b9049377b0050599d320dd3822150'/>
<id>urn:sha1:c20e6fb1df0b9049377b0050599d320dd3822150</id>
<content type='text'>
"--log-size" was added in commit 9fa3465, and the commit message
contained a satisfactory explanation; however, the man page entry
for it did not describe the actual output format, what the output
meant and what the option was meant to be used for.

Helped-by: Jonathan Nieder &lt;jrnieder@gmail.com&gt;
Signed-off-by: Jason St. John &lt;jstjohn@purdue.edu&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>line-range-format.txt: clarify -L:regex usage form</title>
<updated>2013-08-06T21:26:26Z</updated>
<author>
<name>Eric Sunshine</name>
<email>sunshine@sunshineco.com</email>
</author>
<published>2013-08-06T13:59:35Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=0ddd47193c225a9f7a658682d4e859771b45ab84'/>
<id>urn:sha1:0ddd47193c225a9f7a658682d4e859771b45ab84</id>
<content type='text'>
blame/log documentation describes -L option as:

  -L&lt;start&gt;,&lt;end&gt;
  -L:&lt;regex&gt;

  &lt;start&gt; and &lt;end&gt; can take one of these forms:

    * number
    * /regex/
    * +offset or -offset
    * :regex

which is incorrect and confusing since :regex is not one of the valid
forms of &lt;start&gt; or &lt;end&gt;; in fact, it must be -L's lone argument.

Clarify by discussing :&lt;regex&gt; at the same indentation level as "&lt;start&gt;
and &lt;end&gt;...":

  -L&lt;start&gt;,&lt;end&gt;
  -L:&lt;regex&gt;

  &lt;start&gt; and &lt;end&gt; can take one of these forms:

    * number
    * /regex/
    * +offset or -offset

  If :&lt;regex&gt; is given in place of &lt;start&gt; and &lt;end&gt; ...

Signed-off-by: Eric Sunshine &lt;sunshine@sunshineco.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git-log.txt: place each -L option variation on its own line</title>
<updated>2013-08-06T21:25:22Z</updated>
<author>
<name>Eric Sunshine</name>
<email>sunshine@sunshineco.com</email>
</author>
<published>2013-08-06T13:59:34Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=1e159833c732d332eefd75d92bee22cf029ca84f'/>
<id>urn:sha1:1e159833c732d332eefd75d92bee22cf029ca84f</id>
<content type='text'>
Standard practice in Git documentation is for each variation of an
option (such as: -p / --porcelain) to be placed on its own line in the
OPTIONS table. The -L option does not follow suit. It cuddles "-L
&lt;start&gt;,&lt;end&gt;:&lt;file&gt;" and "-L :&lt;regex&gt;:&lt;file&gt;", separated by a comma.
This is inconsistent and potentially confusing since the comma
separating them is typeset the same as the comma in "&lt;start&gt;,&lt;end&gt;". Fix
this by placing each variation on its own line.

Signed-off-by: Eric Sunshine &lt;sunshine@sunshineco.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'mm/diff-no-patch-synonym-to-s'</title>
<updated>2013-07-22T18:23:27Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2013-07-22T18:23:27Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=e2ecd252b5e3c90c211075ba9d1017379782708b'/>
<id>urn:sha1:e2ecd252b5e3c90c211075ba9d1017379782708b</id>
<content type='text'>
"git show -s" was less discoverable than it should be.

* mm/diff-no-patch-synonym-to-s:
  Documentation/git-log.txt: capitalize section names
  Documentation: move description of -s, --no-patch to diff-options.txt
  Documentation/git-show.txt: include common diff options, like git-log.txt
  diff: allow --patch &amp; cie to override -s/--no-patch
  diff: allow --no-patch as synonym for -s
  t4000-diff-format.sh: modernize style
</content>
</entry>
<entry>
<title>Documentation/git-log.txt: capitalize section names</title>
<updated>2013-07-18T00:50:56Z</updated>
<author>
<name>Matthieu Moy</name>
<email>Matthieu.Moy@imag.fr</email>
</author>
<published>2013-07-16T08:05:40Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=4ba258b7e1020e8e3f321ca2df01e34cd71bee88'/>
<id>urn:sha1:4ba258b7e1020e8e3f321ca2df01e34cd71bee88</id>
<content type='text'>
This is the convention in most other files and even at the beginning of
git-log.txt

Signed-off-by: Matthieu Moy &lt;Matthieu.Moy@imag.fr&gt;
Reviewed-by: Jonathan Nieder &lt;jrnieder@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git-log.txt: fix typesetting of example "git-log -L" invocation</title>
<updated>2013-07-17T19:58:36Z</updated>
<author>
<name>Eric Sunshine</name>
<email>sunshine@sunshineco.com</email>
</author>
<published>2013-07-16T00:10:36Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=001b0976afe6f41bff46aa3eaad0285b641a50ea'/>
<id>urn:sha1:001b0976afe6f41bff46aa3eaad0285b641a50ea</id>
<content type='text'>
All surrounding examples are typeset as monospaced text. Follow suit.

Signed-off-by: Eric Sunshine &lt;sunshine@sunshineco.com&gt;
Acked-by: Thomas Rast &lt;trast@inf.ethz.ch&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'ph/builtin-srcs-are-in-subdir-these-days'</title>
<updated>2013-06-26T22:07:48Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2013-06-26T22:07:48Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=2ddc898bc0d0c3f03b4aeeb34c33f652d95f2807'/>
<id>urn:sha1:2ddc898bc0d0c3f03b4aeeb34c33f652d95f2807</id>
<content type='text'>
* ph/builtin-srcs-are-in-subdir-these-days:
  fix "builtin-*" references to be "builtin/*"
</content>
</entry>
<entry>
<title>fix "builtin-*" references to be "builtin/*"</title>
<updated>2013-06-18T18:05:51Z</updated>
<author>
<name>Phil Hord</name>
<email>hordp@cisco.com</email>
</author>
<published>2013-06-18T17:44:58Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=09b7e2204a8e41307192c800162e438ec09ddd2c'/>
<id>urn:sha1:09b7e2204a8e41307192c800162e438ec09ddd2c</id>
<content type='text'>
Documentation and some comments still refer to files in builtin/
as 'builtin-*.[cho]'.  Update these to show the correct location.

Signed-off-by: Phil Hord &lt;hordp@cisco.com&gt;
Reviewed-by: Jonathan Nieder &lt;jrnieder@gmail.com&gt;
Assisted-by: Junio C Hamano &lt;gitster@pobox.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
</feed>
