<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v1.8.1-rc1</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v1.8.1-rc1</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v1.8.1-rc1'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2012-12-07T23:17:21Z</updated>
<entry>
<title>Git 1.8.1-rc1</title>
<updated>2012-12-07T23:17:21Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-12-07T22:18:55Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=816f290752cb43c88e31ea1a9e06ec84d559add3'/>
<id>urn:sha1:816f290752cb43c88e31ea1a9e06ec84d559add3</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Documentation/diff-config: work around AsciiDoc misfortune</title>
<updated>2012-12-07T23:15:59Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-12-07T23:15:59Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=00704e4ba527c7e6a36db9b37d59c719310d878c'/>
<id>urn:sha1:00704e4ba527c7e6a36db9b37d59c719310d878c</id>
<content type='text'>
The line that happens to begin with indent followed by "3. " was
interpreted as if it was an enumerated list; just wrap the lines
differently to work it around for now.

Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2012-12-07T22:16:52Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-12-07T22:16:52Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=5a2c11b6dbecff69336324d73e73b7315053734f'/>
<id>urn:sha1:5a2c11b6dbecff69336324d73e73b7315053734f</id>
<content type='text'>
* maint:
  Update draft release notes to 1.8.0.2
</content>
</entry>
<entry>
<title>Update draft release notes to 1.8.0.2</title>
<updated>2012-12-07T22:16:38Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-12-07T22:16:38Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=a859d3ee57acee1ca9fbb37e763814f83d11e7bd'/>
<id>urn:sha1:a859d3ee57acee1ca9fbb37e763814f83d11e7bd</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'jc/doc-push-satellite' into maint</title>
<updated>2012-12-07T22:11:21Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-12-07T22:11:21Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f07f4134ae44d7556509e246316482709d193f67'/>
<id>urn:sha1:f07f4134ae44d7556509e246316482709d193f67</id>
<content type='text'>
* jc/doc-push-satellite:
  Documentation/git-push.txt: clarify the "push from satellite" workflow
</content>
</entry>
<entry>
<title>Merge branch 'jc/same-encoding' into maint</title>
<updated>2012-12-07T22:10:56Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-12-07T22:10:56Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=fff26a68053022a2cbc39142c7c6f6d016837058'/>
<id>urn:sha1:fff26a68053022a2cbc39142c7c6f6d016837058</id>
<content type='text'>
Various codepaths checked if two encoding names are the same using
ad-hoc code and some of them ended up asking iconv() to convert
between "utf8" and "UTF-8".  The former is not a valid way to spell
the encoding name, but often people use it by mistake, and we
equated them in some but not all codepaths. Introduce a new helper
function to make these codepaths consistent.

* jc/same-encoding:
  reencode_string(): introduce and use same_encoding()
</content>
</entry>
<entry>
<title>Merge branch 'lt/diff-stat-show-0-lines' into maint</title>
<updated>2012-12-07T22:10:17Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-12-07T22:10:17Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=6a402843c2bc0a72fb70c8795aee523d7f1582d3'/>
<id>urn:sha1:6a402843c2bc0a72fb70c8795aee523d7f1582d3</id>
<content type='text'>
"git diff --stat" miscounted the total number of changed lines when
binary files were involved and hidden beyond --stat-count.  It also
miscounted the total number of changed files when there were
unmerged paths.

* lt/diff-stat-show-0-lines:
  t4049: refocus tests
  diff --shortstat: do not count "unmerged" entries
  diff --stat: do not count "unmerged" entries
  diff --stat: move the "total count" logic to the last loop
  diff --stat: use "file" temporary variable to refer to data-&gt;files[i]
  diff --stat: status of unmodified pair in diff-q is not zero
  test: add failing tests for "diff --stat" to t4049
  Fix "git diff --stat" for interesting - but empty - file changes
</content>
</entry>
<entry>
<title>Merge branch 'master' of git://github.com/git-l10n/git-po</title>
<updated>2012-12-07T18:32:22Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-12-07T18:32:22Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=feeb42e306c32b3b16c265fcd4e9348f4d465bf6'/>
<id>urn:sha1:feeb42e306c32b3b16c265fcd4e9348f4d465bf6</id>
<content type='text'>
* 'master' of git://github.com/git-l10n/git-po:
  l10n: de.po: translate 22 new messages
  l10n: de.po: translate 825 new messages
  l10n: Update Swedish translation (1979t0f0u)
  l10n: vi.po: update to git-v1.8.0.1-347-gf94c3
  l10n: Update git.pot (5 new, 1 removed messages)
</content>
</entry>
<entry>
<title>Merge branch 'rr/t4041-cleanup'</title>
<updated>2012-12-07T18:31:19Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2012-12-07T18:31:19Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=7e2ef8b049ba64567ae39918cdd9c68ca6cca305'/>
<id>urn:sha1:7e2ef8b049ba64567ae39918cdd9c68ca6cca305</id>
<content type='text'>
* rr/t4041-cleanup:
  t4041 (diff-submodule-option): modernize style
  t4041 (diff-submodule-option): rewrite add_file() routine
  t4041 (diff-submodule-option): parse digests sensibly
  t4041 (diff-submodule-option): don't hardcode SHA-1 in expected outputs
</content>
</entry>
<entry>
<title>Merge branch git://github.com/ralfth/git-po-de</title>
<updated>2012-12-07T09:30:02Z</updated>
<author>
<name>Jiang Xin</name>
<email>worldhello.net@gmail.com</email>
</author>
<published>2012-12-07T09:28:58Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=167e2f91150304ed1f7b24659101aae19c01e30d'/>
<id>urn:sha1:167e2f91150304ed1f7b24659101aae19c01e30d</id>
<content type='text'>
* 'rt/de-l10n-updates-for-1.8.1' of git://github.com/ralfth/git-po-de:
  l10n: de.po: translate 22 new messages
  l10n: de.po: translate 825 new messages

Signed-off-by: Jiang Xin &lt;worldhello.net@gmail.com&gt;
</content>
</entry>
</feed>
