<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/libgit2.git/src/iterator.c, branch ethomson/winhttp</title>
<subtitle>github.com: libgit2/libgit2.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/'/>
<entry>
<title>Set ctime/mtime nanosecs to 0 if USE_NSEC is not defined</title>
<updated>2018-01-31T17:28:25+00:00</updated>
<author>
<name>Tomás Pollak</name>
<email>tomaspollak@gmail.com</email>
</author>
<published>2018-01-31T17:28:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=054e4c08d2600c61a4805197381b15830f2762bd'/>
<id>054e4c08d2600c61a4805197381b15830f2762bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Honor 'GIT_USE_NSEC' option in `filesystem_iterator_set_current`</title>
<updated>2018-01-31T02:21:19+00:00</updated>
<author>
<name>Tomás Pollak</name>
<email>tomaspollak@gmail.com</email>
</author>
<published>2018-01-31T02:21:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=752006dd9a617466adc50fca1587e5e6325954fd'/>
<id>752006dd9a617466adc50fca1587e5e6325954fd</id>
<content type='text'>
This should have been part of PR #3638. Without this we still get 
nsec-related errors, even when using -DGIT_USE_NSEC:

 error: ‘struct stat’ has no member named ‘st_mtime_nsec’</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This should have been part of PR #3638. Without this we still get 
nsec-related errors, even when using -DGIT_USE_NSEC:

 error: ‘struct stat’ has no member named ‘st_mtime_nsec’</pre>
</div>
</content>
</entry>
<entry>
<title>iterator: cleanups with symlink dir handling</title>
<updated>2017-12-30T00:12:46+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@edwardthomson.com</email>
</author>
<published>2017-12-30T00:12:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=9e94b6af2fccd522de55d67074e62b726028ac4a'/>
<id>9e94b6af2fccd522de55d67074e62b726028ac4a</id>
<content type='text'>
Perform some error checking when examining symlink directories.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Perform some error checking when examining symlink directories.
</pre>
</div>
</content>
</entry>
<entry>
<title> branches: Check symlinked subdirectories</title>
<updated>2017-12-29T23:53:17+00:00</updated>
<author>
<name>Andy Doan</name>
<email>andy@opensourcefoundries.com</email>
</author>
<published>2017-10-30T16:38:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=e9628e7b8d4f19a12a1cc98306c973e36c20f29c'/>
<id>e9628e7b8d4f19a12a1cc98306c973e36c20f29c</id>
<content type='text'>
 Native Git allows symlinked directories under .git/refs. This
 change allows libgit2 to also look for references that live under
 symlinked directories.

Signed-off-by: Andy Doan &lt;andy@opensourcefoundries.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 Native Git allows symlinked directories under .git/refs. This
 change allows libgit2 to also look for references that live under
 symlinked directories.

Signed-off-by: Andy Doan &lt;andy@opensourcefoundries.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Make sure to always include "common.h" first</title>
<updated>2017-07-03T08:51:48+00:00</updated>
<author>
<name>Patrick Steinhardt</name>
<email>ps@pks.im</email>
</author>
<published>2017-06-30T11:39:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=0c7f49dd4316b332f30b4ea72a657bace41e1245'/>
<id>0c7f49dd4316b332f30b4ea72a657bace41e1245</id>
<content type='text'>
Next to including several files, our "common.h" header also declares
various macros which are then used throughout the project. As such, we
have to make sure to always include this file first in all
implementation files. Otherwise, we might encounter problems or even
silent behavioural differences due to macros or defines not being
defined as they should be. So in fact, our header and implementation
files should make sure to always include "common.h" first.

This commit does so by establishing a common include pattern. Header
files inside of "src" will now always include "common.h" as its first
other file, separated by a newline from all the other includes to make
it stand out as special. There are two cases for the implementation
files. If they do have a matching header file, they will always include
this one first, leading to "common.h" being transitively included as
first file. If they do not have a matching header file, they instead
include "common.h" as first file themselves.

This fixes the outlined problems and will become our standard practice
for header and source files inside of the "src/" from now on.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Next to including several files, our "common.h" header also declares
various macros which are then used throughout the project. As such, we
have to make sure to always include this file first in all
implementation files. Otherwise, we might encounter problems or even
silent behavioural differences due to macros or defines not being
defined as they should be. So in fact, our header and implementation
files should make sure to always include "common.h" first.

This commit does so by establishing a common include pattern. Header
files inside of "src" will now always include "common.h" as its first
other file, separated by a newline from all the other includes to make
it stand out as special. There are two cases for the implementation
files. If they do have a matching header file, they will always include
this one first, leading to "common.h" being transitively included as
first file. If they do not have a matching header file, they instead
include "common.h" as first file themselves.

This fixes the outlined problems and will become our standard practice
for header and source files inside of the "src/" from now on.
</pre>
</div>
</content>
</entry>
<entry>
<title>common: use PRIuZ for size_t in `giterr_set` calls</title>
<updated>2016-11-14T09:05:59+00:00</updated>
<author>
<name>Patrick Steinhardt</name>
<email>ps@pks.im</email>
</author>
<published>2016-11-14T09:05:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=c77a55a917c60bc052d8702d4c3e170b0b5fe964'/>
<id>c77a55a917c60bc052d8702d4c3e170b0b5fe964</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>filesystem_iterator: fixed double free on error</title>
<updated>2016-08-22T15:27:47+00:00</updated>
<author>
<name>Jason Haslam</name>
<email>jason@scitools.com</email>
</author>
<published>2016-08-22T15:27:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=7a3f1de500423ed1cdf1d97a273146f2098b672e'/>
<id>7a3f1de500423ed1cdf1d97a273146f2098b672e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>iterator: ignore submodule in has_ended</title>
<updated>2016-04-21T14:58:22+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@github.com</email>
</author>
<published>2016-04-21T14:58:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=db22a91b86dbb230dd559f4864f4b846a895632d'/>
<id>db22a91b86dbb230dd559f4864f4b846a895632d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>iterator: support trailing `/` in start for submod</title>
<updated>2016-04-02T20:34:55+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@github.com</email>
</author>
<published>2016-04-02T20:03:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=d47f7e1c15560e327359e69caf1bc0c41538c676'/>
<id>d47f7e1c15560e327359e69caf1bc0c41538c676</id>
<content type='text'>
Allow callers to specify a start path with a trailing slash to match
a submodule, instead of just a directory.  This is for some legacy
behavior that's sort of dumb, but there it is.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow callers to specify a start path with a trailing slash to match
a submodule, instead of just a directory.  This is for some legacy
behavior that's sort of dumb, but there it is.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #3719 from libgit2/ethomson/submodule_status</title>
<updated>2016-04-01T07:29:51+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>carlosmn@github.com</email>
</author>
<published>2016-04-01T07:29:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=1cac688d3f064f1b193c078e40b1b5eeca99dc16'/>
<id>1cac688d3f064f1b193c078e40b1b5eeca99dc16</id>
<content type='text'>
WD iterator: properly identify submodules</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
WD iterator: properly identify submodules</pre>
</div>
</content>
</entry>
</feed>
