<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v1.6.3.2</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://www.git.shady.money/git/atom?h=v1.6.3.2</id>
<link rel='self' href='https://www.git.shady.money/git/atom?h=v1.6.3.2'/>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/'/>
<updated>2009-06-04T05:47:48Z</updated>
<entry>
<title>GIT 1.6.3.2</title>
<updated>2009-06-04T05:47:48Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-06-04T05:42:15Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=6c7f58d6f691c1091b90b0891e94c91e20fd6054'/>
<id>urn:sha1:6c7f58d6f691c1091b90b0891e94c91e20fd6054</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>grep: fix empty word-regexp matches</title>
<updated>2009-06-03T18:32:29Z</updated>
<author>
<name>René Scharfe</name>
<email>rene.scharfe@lsrfire.ath.cx</email>
</author>
<published>2009-06-03T16:19:01Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=84201eae771fbb1d774cf1356d89016053e56778'/>
<id>urn:sha1:84201eae771fbb1d774cf1356d89016053e56778</id>
<content type='text'>
The command "git grep -w ''" dies as soon as it encounters an empty line,
reporting (wrongly) that "regexp returned nonsense".  The first hunk of
this patch relaxes the sanity check that is responsible for that,
allowing matches to start at the end.

The second hunk complements it by making sure that empty matches are
rejected if -w was specified, as they are not really words.

GNU grep does the same:

	$ echo foo | grep -c ''
	1
	$ echo foo | grep -c -w ''
	0

Signed-off-by: Rene Scharfe &lt;rene.scharfe@lsrfire.ath.cx&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>blame: correctly handle a path that used to be a directory</title>
<updated>2009-06-03T07:49:34Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-06-03T07:43:22Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=a9b2d42486ee0b461220bf3895114926d9ddf9be'/>
<id>urn:sha1:a9b2d42486ee0b461220bf3895114926d9ddf9be</id>
<content type='text'>
When trying to see if the same path exists in the parent, we ran
"diff-tree" with pathspec set to the path we are interested in with the
parent, and expect either to have exactly one resulting filepair (either
"changed from the parent", "created when there was none") or nothing (when
there is no change from the parent).

If the path used to be a directory, however, we will also see unbounded
number of entries that talk about the files that used to exist underneath
the directory in question.  Correctly pick only the entry that describes
the path we are interested in in such a case (namely, the creation of the
path as a regular file).

Noticed by Ben Willard.

Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>add -i: do not dump patch during application</title>
<updated>2009-06-03T07:11:15Z</updated>
<author>
<name>Thomas Rast</name>
<email>trast@student.ethz.ch</email>
</author>
<published>2009-06-02T21:34:27Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=8dc3a47c3edcee923225000e93f8052c50e5a004'/>
<id>urn:sha1:8dc3a47c3edcee923225000e93f8052c50e5a004</id>
<content type='text'>
Remove a debugging print that snuck in at 7a26e65 (Revert
"git-add--interactive: remove hunk coalescing", 2009-05-16).

Signed-off-by: Thomas Rast &lt;trast@student.ethz.ch&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Update draft release notes for 1.6.3.2</title>
<updated>2009-06-02T15:11:30Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-06-02T14:57:39Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=40bad52d7d559177e373127f50c7bb3a19d56d85'/>
<id>urn:sha1:40bad52d7d559177e373127f50c7bb3a19d56d85</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'cb/maint-1.6.0-xdl-merge-fix' into maint</title>
<updated>2009-06-02T14:48:44Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-06-02T14:48:44Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=456cb4cf3ef6e3dec637b7061b0c834b62eba0f5'/>
<id>urn:sha1:456cb4cf3ef6e3dec637b7061b0c834b62eba0f5</id>
<content type='text'>
* cb/maint-1.6.0-xdl-merge-fix:
  Change xdl_merge to generate output even for null merges
  t6023: merge-file fails to output anything for a degenerate merge

Conflicts:
	xdiff/xmerge.c
</content>
</entry>
<entry>
<title>Merge branch 'rs/maint-grep-word-regexp-fix' into maint</title>
<updated>2009-06-02T14:48:09Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-06-02T14:48:09Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=3489428367e0d9d95cf90a8a7f537db958f9a78a'/>
<id>urn:sha1:3489428367e0d9d95cf90a8a7f537db958f9a78a</id>
<content type='text'>
* rs/maint-grep-word-regexp-fix:
  grep: fix colouring of matches with zero length
  grep: fix word-regexp at the beginning of lines
</content>
</entry>
<entry>
<title>Merge branch 'sb/maint-1.6.2-opt-filename-fix' into maint</title>
<updated>2009-06-02T14:47:03Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-06-02T14:47:03Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=b91ffd37d5c18046f7b0bf47e939273bead9e52e'/>
<id>urn:sha1:b91ffd37d5c18046f7b0bf47e939273bead9e52e</id>
<content type='text'>
* sb/maint-1.6.2-opt-filename-fix:
  apply, fmt-merge-msg: use relative filenames
  commit: -F overrides -t
</content>
</entry>
<entry>
<title>Merge branch 'jc/maint-add-p-coalesce-fix' into maint</title>
<updated>2009-06-02T14:46:52Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-06-02T14:46:52Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=f2823263bd53b62831450277c746c6cbfcb95a15'/>
<id>urn:sha1:f2823263bd53b62831450277c746c6cbfcb95a15</id>
<content type='text'>
* jc/maint-add-p-coalesce-fix:
  t3701: ensure correctly set up repository after skipped tests
  Revert "git-add--interactive: remove hunk coalescing"
  Splitting a hunk that adds a line at the top fails in "add -p"
</content>
</entry>
<entry>
<title>Merge branch 'tr/maint-doc-stash-pop' into maint</title>
<updated>2009-06-02T14:43:45Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-06-02T14:43:45Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=db8af4b5ea7b58b2aef0f0c85f7b570719deb0ae'/>
<id>urn:sha1:db8af4b5ea7b58b2aef0f0c85f7b570719deb0ae</id>
<content type='text'>
* tr/maint-doc-stash-pop:
  Documentation: teach stash/pop workflow instead of stash/apply
</content>
</entry>
</feed>
