<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/libgit2.git/src, branch cmn/treebuilder-new</title>
<subtitle>github.com: libgit2/libgit2.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/'/>
<entry>
<title>treebuilder: rename _create() to _new()</title>
<updated>2014-12-27T12:09:11+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-12-27T12:09:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=208a2c8aef59a842d1bec1e6bc83340b1c22c13f'/>
<id>208a2c8aef59a842d1bec1e6bc83340b1c22c13f</id>
<content type='text'>
This function is a constructor, so let's name it like one and leave
_create() for the reference functions, which do create/write the
reference.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This function is a constructor, so let's name it like one and leave
_create() for the reference functions, which do create/write the
reference.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2772 from ethomson/case_changing_rename</title>
<updated>2014-12-24T06:24:42+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-12-24T06:24:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=5692dcf181d26069d68d460fc9179c8c96fa3795'/>
<id>5692dcf181d26069d68d460fc9179c8c96fa3795</id>
<content type='text'>
Case changing rename</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Case changing rename</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2778 from ethomson/whitespace_85</title>
<updated>2014-12-24T06:23:36+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-12-24T06:23:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=171c2ff121158c5ee1b808a0243e9115d4aa6259'/>
<id>171c2ff121158c5ee1b808a0243e9115d4aa6259</id>
<content type='text'>
don't treat 0x85 as whitespace</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
don't treat 0x85 as whitespace</pre>
</div>
</content>
</entry>
<entry>
<title>global: include sys/openssl.h for GIT_EXPORT of fn</title>
<updated>2014-12-23T22:40:01+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@microsoft.com</email>
</author>
<published>2014-12-23T22:40:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=73f0278e5dd9cdb52c46df73daee8c517bba72fe'/>
<id>73f0278e5dd9cdb52c46df73daee8c517bba72fe</id>
<content type='text'>
The openssl setup function needs to be GIT_EXPORT'ed, be sure
to include the `sys/openssl.h` header so that it is appropriately
decorated as an export function.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The openssl setup function needs to be GIT_EXPORT'ed, be sure
to include the `sys/openssl.h` header so that it is appropriately
decorated as an export function.
</pre>
</div>
</content>
</entry>
<entry>
<title>don't treat 0x85 as whitespace</title>
<updated>2014-12-23T17:27:01+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@microsoft.com</email>
</author>
<published>2014-12-23T17:27:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=fe5f7722f5207634c1ef22c74552702e80572048'/>
<id>fe5f7722f5207634c1ef22c74552702e80572048</id>
<content type='text'>
A byte value of 0x85 is not whitespace, we were conflating that with
U+0085 (UTF8: 0xc2 0x85).  This caused us to incorrectly treat valid
multibyte characters like U+88C5 (UTF8: 0xe8 0xa3 0x85) as whitespace.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A byte value of 0x85 is not whitespace, we were conflating that with
U+0085 (UTF8: 0xc2 0x85).  This caused us to incorrectly treat valid
multibyte characters like U+88C5 (UTF8: 0xe8 0xa3 0x85) as whitespace.
</pre>
</div>
</content>
</entry>
<entry>
<title>Always checkout with case sensitive iterator</title>
<updated>2014-12-23T16:14:04+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@microsoft.com</email>
</author>
<published>2014-05-10T02:32:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=40d791545abfb3cb71553a27dc64129e1a9bec28'/>
<id>40d791545abfb3cb71553a27dc64129e1a9bec28</id>
<content type='text'>
On a case-insensitive filesystem, we need to deal with case-changing
renames (eg, foo -&gt; FOO) by removing the old and adding the new,
exactly as if we were on a case-sensitive filesystem.

Update the `checkout::tree::can_cancel_checkout_from_notify` test, now
that notifications are always sent case sensitively.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On a case-insensitive filesystem, we need to deal with case-changing
renames (eg, foo -&gt; FOO) by removing the old and adding the new,
exactly as if we were on a case-sensitive filesystem.

Update the `checkout::tree::can_cancel_checkout_from_notify` test, now
that notifications are always sent case sensitively.
</pre>
</div>
</content>
</entry>
<entry>
<title>index: reuc and name entrycounts should be size_t</title>
<updated>2014-12-23T00:42:03+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@microsoft.com</email>
</author>
<published>2014-12-23T00:42:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=2fe8157e1b603e0353fd991f3d129b49d35bed99'/>
<id>2fe8157e1b603e0353fd991f3d129b49d35bed99</id>
<content type='text'>
For the REUC and NAME entries, we use size_t internally, and we take
size_t for the get_byindex() functions, but the entrycount() functions
strangely cast to an unsigned int instead.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For the REUC and NAME entries, we use size_t internally, and we take
size_t for the get_byindex() functions, but the entrycount() functions
strangely cast to an unsigned int instead.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2759 from libgit2/cmn/openssl-sys</title>
<updated>2014-12-21T03:24:45+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@edwardthomson.com</email>
</author>
<published>2014-12-21T03:24:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=d147900ea4756975effa6cb568f932a4e3eb698f'/>
<id>d147900ea4756975effa6cb568f932a4e3eb698f</id>
<content type='text'>
Make OpenSSL locking warnings more severe</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make OpenSSL locking warnings more severe</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2763 from libgit2/cmn/local-proto-progress</title>
<updated>2014-12-21T03:22:30+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@edwardthomson.com</email>
</author>
<published>2014-12-21T03:22:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=c7d9839f54f62849ef528b97b60a39fd21f54c5a'/>
<id>c7d9839f54f62849ef528b97b60a39fd21f54c5a</id>
<content type='text'>
Show progress output on fetch for the local transport</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Show progress output on fetch for the local transport</pre>
</div>
</content>
</entry>
<entry>
<title>COM0 is a valid path, although Windows Explorer does not allow to create this</title>
<updated>2014-12-19T15:54:01+00:00</updated>
<author>
<name>Linquize</name>
<email>linquize@yahoo.com.hk</email>
</author>
<published>2014-12-19T15:54:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=6fd00266a8c5c39d98abf2ec899db6f5cbd8874f'/>
<id>6fd00266a8c5c39d98abf2ec899db6f5cbd8874f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
