<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/libgit2.git/tests/describe/describe_helpers.c, branch ethomson/https_proxy</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>Convert usage of `git_buf_free` to new `git_buf_dispose`</title>
<updated>2018-06-10T17:34:37+00:00</updated>
<author>
<name>Patrick Steinhardt</name>
<email>ps@pks.im</email>
</author>
<published>2018-02-08T11:14:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=ecf4f33a4e327a91496f72816f9f02d923e5af05'/>
<id>ecf4f33a4e327a91496f72816f9f02d923e5af05</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't use cl_git_pass for POSIX functions</title>
<updated>2014-10-10T22:17:27+00:00</updated>
<author>
<name>Russell Belfer</name>
<email>rb@github.com</email>
</author>
<published>2014-10-10T22:17:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=85fe63bc58707da6cba85794ae642c200cf6faf0'/>
<id>85fe63bc58707da6cba85794ae642c200cf6faf0</id>
<content type='text'>
If there is a failure then cl_git_pass tries to get the libgit2
error, but p_... functions don't set that.

Also - trailing whitespace cleanup.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If there is a failure then cl_git_pass tries to get the libgit2
error, but p_... functions don't set that.

Also - trailing whitespace cleanup.
</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: use globs in the tests</title>
<updated>2014-09-30T07:05:55+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-09-30T07:04:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/libgit2.git/commit/?id=5431c46a9604ac5c5d17390013d3741196b41051'/>
<id>5431c46a9604ac5c5d17390013d3741196b41051</id>
<content type='text'>
This makes us be closer to git's tests, and lets us better describe what
we expect from the output.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes us be closer to git's tests, and lets us better describe what
we expect from the output.
</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>
