<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/git.git/Documentation/git-log.txt, branch pm/build-persistent-https-with-recent-go</title>
<subtitle>github.com: git/git.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/'/>
<entry>
<title>log: Update log.follow doc and add to config.txt</title>
<updated>2015-10-07T17:37:48+00:00</updated>
<author>
<name>Eric N. Vander Weele</name>
<email>ericvw@gmail.com</email>
</author>
<published>2015-10-07T01:14:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=fd8d07efdaf0ed5570f975c58b2ceb6500e06dd7'/>
<id>fd8d07efdaf0ed5570f975c58b2ceb6500e06dd7</id>
<content type='text'>
Documentation/config.txt does not include the documentation for
log.follow that is in Documentation/git-log.txt.  This commit adds the
log.follow documentation to config.txt and also updates the wording to
be consistent with the format that is followed by other boolean
configuration variables.

Signed-off-by: Eric N. Vander Weele &lt;ericvw@gmail.com&gt;
Acked-by: David Turner &lt;dturner@twopensource.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Documentation/config.txt does not include the documentation for
log.follow that is in Documentation/git-log.txt.  This commit adds the
log.follow documentation to config.txt and also updates the wording to
be consistent with the format that is followed by other boolean
configuration variables.

Signed-off-by: Eric N. Vander Weele &lt;ericvw@gmail.com&gt;
Acked-by: David Turner &lt;dturner@twopensource.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>log: add "log.follow" configuration variable</title>
<updated>2015-07-09T17:24:23+00:00</updated>
<author>
<name>David Turner</name>
<email>dturner@twopensource.com</email>
</author>
<published>2015-07-08T01:29:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=076c98372e7d3c86d269c1526349a67b73904330'/>
<id>076c98372e7d3c86d269c1526349a67b73904330</id>
<content type='text'>
People who work on projects with mostly linear history with frequent
whole file renames may want to always use "git log --follow" when
inspecting the life of the content that live in a single path.

Teach the command to behave as if "--follow" was given from the
command line when log.follow configuration variable is set *and*
there is one (and only one) path on the command line.

Signed-off-by: David Turner &lt;dturner@twopensource.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
People who work on projects with mostly linear history with frequent
whole file renames may want to always use "git log --follow" when
inspecting the life of the content that live in a single path.

Teach the command to behave as if "--follow" was given from the
command line when log.follow configuration variable is set *and*
there is one (and only one) path on the command line.

Signed-off-by: David Turner &lt;dturner@twopensource.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'mm/usage-log-l-can-take-regex'</title>
<updated>2015-05-06T04:00:36+00:00</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2015-05-06T04:00:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=67498507699641549094f0cbf8800f88176b50c9'/>
<id>67498507699641549094f0cbf8800f88176b50c9</id>
<content type='text'>
Documentation fix.

* mm/usage-log-l-can-take-regex:
  log -L: improve error message on malformed argument
  Documentation: change -L:&lt;regex&gt; to -L:&lt;funcname&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Documentation fix.

* mm/usage-log-l-can-take-regex:
  log -L: improve error message on malformed argument
  Documentation: change -L:&lt;regex&gt; to -L:&lt;funcname&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Documentation: change -L:&lt;regex&gt; to -L:&lt;funcname&gt;</title>
<updated>2015-04-20T18:05:50+00:00</updated>
<author>
<name>Matthieu Moy</name>
<email>Matthieu.Moy@imag.fr</email>
</author>
<published>2015-04-20T12:09:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=d349e0ee60e1bad1cf49245e402ca086ddb5ff80'/>
<id>d349e0ee60e1bad1cf49245e402ca086ddb5ff80</id>
<content type='text'>
The old wording was somehow implying that &lt;start&gt; and &lt;end&gt; were not
regular expressions. Also, the common case is to use a plain function
name here so &lt;funcname&gt; makes sense (the fact that it is a regular
expression is documented in line-range-format.txt).

Signed-off-by: Matthieu Moy &lt;Matthieu.Moy@imag.fr&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The old wording was somehow implying that &lt;start&gt; and &lt;end&gt; were not
regular expressions. Also, the common case is to use a plain function
name here so &lt;funcname&gt; makes sense (the fact that it is a regular
expression is documented in line-range-format.txt).

Signed-off-by: Matthieu Moy &lt;Matthieu.Moy@imag.fr&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>*config.txt: stick to camelCase naming convention</title>
<updated>2015-03-14T05:13:46+00:00</updated>
<author>
<name>Nguyễn Thái Ngọc Duy</name>
<email>pclouds@gmail.com</email>
</author>
<published>2015-03-11T20:32:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=da0005b8853137c91e44867d899910d5c7eb4425'/>
<id>da0005b8853137c91e44867d899910d5c7eb4425</id>
<content type='text'>
This should improve readability. Compare "thislongname" and
"thisLongName". The following keys are left in unchanged. We can
decide what to do with them later.

 - am.keepcr
 - core.autocrlf .safecrlf .trustctime
 - diff.dirstat .noprefix
 - gitcvs.usecrlfattr
 - gui.blamehistoryctx .trustmtime
 - pull.twohead
 - receive.autogc
 - sendemail.signedoffbycc .smtpsslcertpath .suppresscc

Helped-by: Eric Sunshine &lt;sunshine@sunshineco.com&gt;
Signed-off-by: Nguyễn Thái Ngọc Duy &lt;pclouds@gmail.com&gt;
Signed-off-by: Eric Sunshine &lt;sunshine@sunshineco.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This should improve readability. Compare "thislongname" and
"thisLongName". The following keys are left in unchanged. We can
decide what to do with them later.

 - am.keepcr
 - core.autocrlf .safecrlf .trustctime
 - diff.dirstat .noprefix
 - gitcvs.usecrlfattr
 - gui.blamehistoryctx .trustmtime
 - pull.twohead
 - receive.autogc
 - sendemail.signedoffbycc .smtpsslcertpath .suppresscc

Helped-by: Eric Sunshine &lt;sunshine@sunshineco.com&gt;
Signed-off-by: Nguyễn Thái Ngọc Duy &lt;pclouds@gmail.com&gt;
Signed-off-by: Eric Sunshine &lt;sunshine@sunshineco.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'jj/log-doc'</title>
<updated>2013-12-03T19:41:41+00:00</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2013-12-03T19:41:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=a2cb44c61de8e1dba4a0b758141b522b2b258e9a'/>
<id>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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Mark-up fixes.

* jj/log-doc:
  Documentation/git-log.txt: mark-up fix and minor rephasing
  Documentation/git-log: update "--log-size" description
</pre>
</div>
</content>
</entry>
<entry>
<title>Documentation/git-log.txt: mark-up fix and minor rephasing</title>
<updated>2013-11-13T22:09:14+00:00</updated>
<author>
<name>Jason St. John</name>
<email>jstjohn@purdue.edu</email>
</author>
<published>2013-11-13T06:21:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=b20cc13e73fcec3d80eed4d9fc7f6ee8acc206ac'/>
<id>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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 - 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;
</pre>
</div>
</content>
</entry>
<entry>
<title>Documentation/git-log: update "--log-size" description</title>
<updated>2013-11-13T22:06:17+00:00</updated>
<author>
<name>Jason St. John</name>
<email>jstjohn@purdue.edu</email>
</author>
<published>2013-11-13T06:21:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=c20e6fb1df0b9049377b0050599d320dd3822150'/>
<id>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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"--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;
</pre>
</div>
</content>
</entry>
<entry>
<title>line-range-format.txt: clarify -L:regex usage form</title>
<updated>2013-08-06T21:26:26+00:00</updated>
<author>
<name>Eric Sunshine</name>
<email>sunshine@sunshineco.com</email>
</author>
<published>2013-08-06T13:59:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=0ddd47193c225a9f7a658682d4e859771b45ab84'/>
<id>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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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;
</pre>
</div>
</content>
</entry>
<entry>
<title>git-log.txt: place each -L option variation on its own line</title>
<updated>2013-08-06T21:25:22+00:00</updated>
<author>
<name>Eric Sunshine</name>
<email>sunshine@sunshineco.com</email>
</author>
<published>2013-08-06T13:59:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=1e159833c732d332eefd75d92bee22cf029ca84f'/>
<id>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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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;
</pre>
</div>
</content>
</entry>
</feed>
