<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/libgit2.git/include/git2/describe.h, branch cmn/submodule-refactor</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>Add `const` qualifier</title>
<updated>2015-05-14T21:34:43+00:00</updated>
<author>
<name>Yury G. Kudryashov</name>
<email>urkud.urkud@gmail.com</email>
</author>
<published>2015-05-13T06:21:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=c8022e6ce7c9fe5e57c69ab8d88c9ed53276fa1b'/>
<id>c8022e6ce7c9fe5e57c69ab8d88c9ed53276fa1b</id>
<content type='text'>
This fixes a warning in `examples/describe.c` without breaking the main build.

OTOH, I'm not sure if this is an API-compatible change.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes a warning in `examples/describe.c` without breaking the main build.

OTOH, I'm not sure if this is an API-compatible change.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix doc comment formatting</title>
<updated>2015-02-10T15:31:48+00:00</updated>
<author>
<name>Ben Chatelain</name>
<email>benchatelain@gmail.com</email>
</author>
<published>2015-02-10T15:31:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=ec7e1c93ce1c177026073abd16d6a8d2b548d3bd'/>
<id>ec7e1c93ce1c177026073abd16d6a8d2b548d3bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>describe: document the API</title>
<updated>2014-09-30T07:32:24+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-09-30T07:32:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=a3b9270dcfe61ce3429f82b514b302667d05bfc5'/>
<id>a3b9270dcfe61ce3429f82b514b302667d05bfc5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>describe: rename git_describe_opts to git_describe_options</title>
<updated>2014-09-30T07:18:22+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-09-30T07:18:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=25345c0cbe1493d63bbc9d309d7fcf0f84df741b'/>
<id>25345c0cbe1493d63bbc9d309d7fcf0f84df741b</id>
<content type='text'>
And implement the option init functions for this and the format options.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And implement the option init functions for this and the format options.
</pre>
</div>
</content>
</entry>
<entry>
<title>describe: implement describing the workdir</title>
<updated>2014-09-30T06:56:20+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-09-30T06:54:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=fd8126e4c605e749ed6ab1e31ac32366adc8cc8f'/>
<id>fd8126e4c605e749ed6ab1e31ac32366adc8cc8f</id>
<content type='text'>
When we describe the workdir, we perform a describe on HEAD and then
check to see if the worktree is dirty. If it is and we have a suffix
string, we append that to the buffer.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When we describe the workdir, we perform a describe on HEAD and then
check to see if the worktree is dirty. If it is and we have a suffix
string, we append that to the buffer.
</pre>
</div>
</content>
</entry>
<entry>
<title>describe: split into gather and format steps</title>
<updated>2014-09-30T05:24:28+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-09-30T05:19:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=3b6534b80768e8751b398cd3aeffb888e374c8d4'/>
<id>3b6534b80768e8751b398cd3aeffb888e374c8d4</id>
<content type='text'>
Instead of printing out to the buffer inside the information-gathering
phase, write the data to a intermediate result structure.

This allows us to split the options into gathering options and
formatting options, simplifying the gathering code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of printing out to the buffer inside the information-gathering
phase, write the data to a intermediate result structure.

This allows us to split the options into gathering options and
formatting options, simplifying the gathering code.
</pre>
</div>
</content>
</entry>
<entry>
<title>describe: rename _object() to _commit()</title>
<updated>2014-09-30T02:58:02+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-09-30T02:58:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=1f501a086b4a9103f5ef5540c82c57d8559f0aff'/>
<id>1f501a086b4a9103f5ef5540c82c57d8559f0aff</id>
<content type='text'>
We don't describe arbitrary object, so let's give it the name of the one
object type we accept.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We don't describe arbitrary object, so let's give it the name of the one
object type we accept.
</pre>
</div>
</content>
</entry>
<entry>
<title>object: introduce git_describe_object()</title>
<updated>2014-04-30T07:46:25+00:00</updated>
<author>
<name>nulltoken</name>
<email>emeric.fermas@gmail.com</email>
</author>
<published>2012-11-13T15:35:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=3a728fb508ea3eea8033a9e338c61a6421ad21b2'/>
<id>3a728fb508ea3eea8033a9e338c61a6421ad21b2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
