<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/libgit2.git/src/win32, branch branch-delete-ref</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>Merge pull request #778 from ben/clone</title>
<updated>2012-08-19T08:26:06+00:00</updated>
<author>
<name>Vicent Martí</name>
<email>vicent@github.com</email>
</author>
<published>2012-08-19T08:26:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=f98c32f3fea0d5532db2d5733418aa62648b9e93'/>
<id>f98c32f3fea0d5532db2d5733418aa62648b9e93</id>
<content type='text'>
Clone</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Clone</pre>
</div>
</content>
</entry>
<entry>
<title>win32: set errno to ENOENT or ENOTDIR when appropriate in do_lstat</title>
<updated>2012-08-02T00:12:16+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>carlos@cmartin.tk</email>
</author>
<published>2012-08-01T23:56:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=d96c3863a50f2a9b0f33735911e5472fec3ad288'/>
<id>d96c3863a50f2a9b0f33735911e5472fec3ad288</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Checkout: obey core.symlinks.</title>
<updated>2012-07-18T02:57:37+00:00</updated>
<author>
<name>Ben Straub</name>
<email>bstraub@github.com</email>
</author>
<published>2012-07-18T02:57:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=8651c10f1ed5d42ef0ad6e9e9f654799b4ffb39c'/>
<id>8651c10f1ed5d42ef0ad6e9e9f654799b4ffb39c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'development' into clone</title>
<updated>2012-07-17T15:08:34+00:00</updated>
<author>
<name>Ben Straub</name>
<email>bstraub@github.com</email>
</author>
<published>2012-07-17T15:08:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=bfc65634050dc52e3ed6b4497ebbb511e39d6e1e'/>
<id>bfc65634050dc52e3ed6b4497ebbb511e39d6e1e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Checkout: handle symlinks.</title>
<updated>2012-07-16T23:22:41+00:00</updated>
<author>
<name>Ben Straub</name>
<email>bstraub@github.com</email>
</author>
<published>2012-07-16T23:16:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=1d68fcd04b21a2c5665d0ca6a5543e7166c73457'/>
<id>1d68fcd04b21a2c5665d0ca6a5543e7166c73457</id>
<content type='text'>
Includes unfinished win32 implementation.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Includes unfinished win32 implementation.</pre>
</div>
</content>
</entry>
<entry>
<title>fix below issues on mingw:</title>
<updated>2012-06-21T12:17:54+00:00</updated>
<author>
<name>liyuray</name>
<email>liyuray@gmail.com</email>
</author>
<published>2012-06-21T12:17:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=dfa0b65c695c24512a60678587183d95de4c18fa'/>
<id>dfa0b65c695c24512a60678587183d95de4c18fa</id>
<content type='text'>
1. compile warning:

D:\libgit2.git\src\win32\posix_w32.c: In function 'p_open':
D:\libgit2.git\src\win32\posix_w32.c:235:10: warning: 'mode_t' is promoted to 'int' when passed through '...' [enabled by default]
D:\libgit2.git\src\win32\posix_w32.c:235:10: note: (so you should pass 'int' not 'mode_t' to 'va_arg')
D:\libgit2.git\src\win32\posix_w32.c:235:10: note: if this code is reached, the program will abort

2. test crash.

3. the above two issues are same root cause. please see http://www.eskimo.com/~scs/cclass/int/sx11c.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1. compile warning:

D:\libgit2.git\src\win32\posix_w32.c: In function 'p_open':
D:\libgit2.git\src\win32\posix_w32.c:235:10: warning: 'mode_t' is promoted to 'int' when passed through '...' [enabled by default]
D:\libgit2.git\src\win32\posix_w32.c:235:10: note: (so you should pass 'int' not 'mode_t' to 'va_arg')
D:\libgit2.git\src\win32\posix_w32.c:235:10: note: if this code is reached, the program will abort

2. test crash.

3. the above two issues are same root cause. please see http://www.eskimo.com/~scs/cclass/int/sx11c.html
</pre>
</div>
</content>
</entry>
<entry>
<title>Precompile headers for MSVC.</title>
<updated>2012-06-13T21:28:47+00:00</updated>
<author>
<name>Ben Straub</name>
<email>bstraub@github.com</email>
</author>
<published>2012-06-13T21:22:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=73aaf67439a04ca4888dfa1948f8425b2f79307d'/>
<id>73aaf67439a04ca4888dfa1948f8425b2f79307d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>misc: Fix warnings from PVS Studio trial</title>
<updated>2012-06-07T20:43:48+00:00</updated>
<author>
<name>Vicent Martí</name>
<email>tanoku@gmail.com</email>
</author>
<published>2012-06-07T20:43:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=3f0358604e48432b53abf097aa3ab6a1e3639813'/>
<id>3f0358604e48432b53abf097aa3ab6a1e3639813</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #684 from benstraub/rev-parse</title>
<updated>2012-06-07T19:29:31+00:00</updated>
<author>
<name>Vicent Martí</name>
<email>vicent@github.com</email>
</author>
<published>2012-06-07T19:29:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=b9ebcc59e7d13507d4f8faf86d68dd3ac1a4b627'/>
<id>b9ebcc59e7d13507d4f8faf86d68dd3ac1a4b627</id>
<content type='text'>
Rev parse</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rev parse</pre>
</div>
</content>
</entry>
<entry>
<title>Rename posix wrappers with 'p_' prefix.</title>
<updated>2012-06-06T20:24:25+00:00</updated>
<author>
<name>Ben Straub</name>
<email>bstraub@github.com</email>
</author>
<published>2012-06-06T20:24:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=9ecf860d48b39241a2dce61dd33455816064d56b'/>
<id>9ecf860d48b39241a2dce61dd33455816064d56b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
