<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/Documentation/diff-options.txt, branch v1.8.2.2</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v1.8.2.2</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v1.8.2.2'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2013-03-25T20:46:42Z</updated>
<entry>
<title>Merge branch 'maint-1.8.1' into maint</title>
<updated>2013-03-25T20:46:42Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2013-03-25T20:46:42Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=f7b1ad870c46c53685ef83efbfd7d9ca1983a191'/>
<id>urn:sha1:f7b1ad870c46c53685ef83efbfd7d9ca1983a191</id>
<content type='text'>
* maint-1.8.1:
  bundle: Add colons to list headings in "verify"
  bundle: Fix "verify" output if history is complete
  Documentation: filter-branch env-filter example
  git-filter-branch.txt: clarify ident variables usage
  git-compat-util.h: Provide missing netdb.h definitions
  describe: Document --match pattern format
  Documentation/githooks: Explain pre-rebase parameters
  update-index: list supported idx versions and their features
  diff-options: unconfuse description of --color
  read-cache.c: use INDEX_FORMAT_{LB,UB} in verify_hdr()
  index-format.txt: mention of v4 is missing in some places
</content>
</entry>
<entry>
<title>Merge branch 'jc/color-diff-doc' into maint-1.8.1</title>
<updated>2013-03-25T20:44:53Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2013-03-25T20:44:53Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=82b955c513e403adaf7b39ea621678bbce6b2ede'/>
<id>urn:sha1:82b955c513e403adaf7b39ea621678bbce6b2ede</id>
<content type='text'>
The "--color=&lt;when&gt;" argument to the commands in the diff family
was described poorly.

* jc/color-diff-doc:
  diff-options: unconfuse description of --color
</content>
</entry>
<entry>
<title>diff-options: unconfuse description of --color</title>
<updated>2013-02-23T06:24:10Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2013-02-23T06:24:10Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=3d0e75f2f7a9ae9329154dc85bf5af5c5482f3ea'/>
<id>urn:sha1:3d0e75f2f7a9ae9329154dc85bf5af5c5482f3ea</id>
<content type='text'>
It said "by default it is off" while it also said "the default is
always", which confused everybody who read it only once.  It wanted
to say (1) if you do not say --color, it is not enabled, and (2) if
you say --color but do not say when to enable it, it will always be
enabled".

Rephrase to clarify by using "default" only once.

Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'mp/diff-algo-config'</title>
<updated>2013-02-17T23:25:52Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2013-02-17T23:25:51Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=abea4dc76a675d4ac0f27a2367256dc31981d1ca'/>
<id>urn:sha1:abea4dc76a675d4ac0f27a2367256dc31981d1ca</id>
<content type='text'>
Add diff.algorithm configuration so that the user does not type
"diff --histogram".

* mp/diff-algo-config:
  diff: Introduce --diff-algorithm command line option
  config: Introduce diff.algorithm variable
  git-completion.bash: Autocomplete --minimal and --histogram for git-diff
</content>
</entry>
<entry>
<title>Documentation: the name of the system is 'Git', not 'git'</title>
<updated>2013-02-01T21:53:33Z</updated>
<author>
<name>Thomas Ackermann</name>
<email>th.acker@arcor.de</email>
</author>
<published>2013-01-21T19:17:53Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=2de9b71138171dca7279db3b3fe67e868c76d921'/>
<id>urn:sha1:2de9b71138171dca7279db3b3fe67e868c76d921</id>
<content type='text'>
Signed-off-by: Thomas Ackermann &lt;th.acker@arcor.de&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>diff: Introduce --diff-algorithm command line option</title>
<updated>2013-01-16T17:41:18Z</updated>
<author>
<name>Michal Privoznik</name>
<email>mprivozn@redhat.com</email>
</author>
<published>2013-01-16T07:51:58Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=07924d4d50e5304fb53eb60aaba8aef31d4c4e5e'/>
<id>urn:sha1:07924d4d50e5304fb53eb60aaba8aef31d4c4e5e</id>
<content type='text'>
Since command line options have higher priority than config file
variables and taking previous commit into account, we need a way
how to specify myers algorithm on command line. However,
inventing `--myers` is not the right answer. We need far more
general option, and that is `--diff-algorithm`.

Signed-off-by: Michal Privoznik &lt;mprivozn@redhat.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Sync with 'maint'</title>
<updated>2012-12-18T18:51:22Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-12-18T18:51:22Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=b7cd0c9b692af7728a1d876a3e4fe760956e00c3'/>
<id>urn:sha1:b7cd0c9b692af7728a1d876a3e4fe760956e00c3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>clarify -M without % symbol in diff-options</title>
<updated>2012-12-18T16:46:15Z</updated>
<author>
<name>Sitaram Chamarty</name>
<email>sitaramc@gmail.com</email>
</author>
<published>2012-12-18T10:47:09Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=31d66aa4084cb292b15cfdcd6ff73f22f45ab9af'/>
<id>urn:sha1:31d66aa4084cb292b15cfdcd6ff73f22f45ab9af</id>
<content type='text'>
Signed-off-by: Sitaram Chamarty &lt;sitaramc@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>diff: introduce diff.submodule configuration variable</title>
<updated>2012-11-19T03:18:13Z</updated>
<author>
<name>Ramkumar Ramachandra</name>
<email>artagnon@gmail.com</email>
</author>
<published>2012-11-13T15:42:45Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=c47ef57caaa2b17d32b343fbe652f33b31c81362'/>
<id>urn:sha1:c47ef57caaa2b17d32b343fbe652f33b31c81362</id>
<content type='text'>
Introduce a diff.submodule configuration variable corresponding to the
'--submodule' command-line option of 'git diff'.

Signed-off-by: Ramkumar Ramachandra &lt;artagnon@gmail.com&gt;
Acked-by: Jeff King &lt;peff@peff.net&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Documentation: Fix misspellings</title>
<updated>2012-06-22T21:25:04Z</updated>
<author>
<name>Leila Muhtasib</name>
<email>muhtasib@gmail.com</email>
</author>
<published>2012-06-22T20:03:01Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=8d8136c37a98bfb545f46990e3854df3414c3528'/>
<id>urn:sha1:8d8136c37a98bfb545f46990e3854df3414c3528</id>
<content type='text'>
Signed-off-by: Leila Muhtasib &lt;muhtasib@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
</feed>
