<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/libgit2.git/include/git2/remote.h, branch cmn/openssl-sys</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>doc: add documentation to all the public structs and enums</title>
<updated>2014-12-06T02:44:40+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-12-06T02:36:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=a295bd2dc4a1ac2b15b9c39089d148499e6e9e00'/>
<id>a295bd2dc4a1ac2b15b9c39089d148499e6e9e00</id>
<content type='text'>
This makes them show up in the reference, even if the text itself isn't
the most descriptive.

These have been found with

    grep -Przon '\n\ntypedef struct.*?\{' -- include
    grep -Przon '\n\ntypedef enum.*?\{' -- include
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes them show up in the reference, even if the text itself isn't
the most descriptive.

These have been found with

    grep -Przon '\n\ntypedef struct.*?\{' -- include
    grep -Przon '\n\ntypedef enum.*?\{' -- include
</pre>
</div>
</content>
</entry>
<entry>
<title>Spelling fixes</title>
<updated>2014-12-05T03:06:59+00:00</updated>
<author>
<name>Will Stamper</name>
<email>epmatsw@gmail.com</email>
</author>
<published>2014-12-05T03:06:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=b874629b2d5823b7f52055a9784cc2e34cd48efb'/>
<id>b874629b2d5823b7f52055a9784cc2e34cd48efb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remote: don't say we free the remote on disconnect</title>
<updated>2014-11-19T14:49:47+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-11-19T14:49:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=8fd7dd778ddc2aa157de6a3b307a9c2b3686fe7a'/>
<id>8fd7dd778ddc2aa157de6a3b307a9c2b3686fe7a</id>
<content type='text'>
On disconnect we simply ask the transport to close the connection, we do
not free it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On disconnect we simply ask the transport to close the connection, we do
not free it.
</pre>
</div>
</content>
</entry>
<entry>
<title>remote: clarify which list of references _ls() returns</title>
<updated>2014-11-19T14:49:02+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-11-19T14:49:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=699dfcc3bcd4494a1532bf608aa0d84022c58dbf'/>
<id>699dfcc3bcd4494a1532bf608aa0d84022c58dbf</id>
<content type='text'>
Make it clear that this is not the ls-remote command but a way to access
the data we have and how long it's kept around.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make it clear that this is not the ls-remote command but a way to access
the data we have and how long it's kept around.
</pre>
</div>
</content>
</entry>
<entry>
<title>remote: use configured push refspecs if none are given</title>
<updated>2014-11-08T23:01:58+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-10-11T10:25:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=64e3e6d43acbbf6cc8f8a4c612547c5a575c4031'/>
<id>64e3e6d43acbbf6cc8f8a4c612547c5a575c4031</id>
<content type='text'>
If the user does not pass any refspecs to push, try to use those
configured via the configuration or via add_push().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the user does not pass any refspecs to push, try to use those
configured via the configuration or via add_push().
</pre>
</div>
</content>
</entry>
<entry>
<title>remote: introduce git_remote_push()</title>
<updated>2014-11-08T23:01:58+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-10-10T10:39:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=3149547b5ae526f28412574d64d874a4dfd2ed9c'/>
<id>3149547b5ae526f28412574d64d874a4dfd2ed9c</id>
<content type='text'>
This function, similar in style to git_remote_fetch(), performs all the
steps required for a push, with a similar interface.

The remote callbacks struct has learnt about the push callbacks, letting
us set the callbacks a single time instead of setting some in the remote
and some in the push operation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This function, similar in style to git_remote_fetch(), performs all the
steps required for a push, with a similar interface.

The remote callbacks struct has learnt about the push callbacks, letting
us set the callbacks a single time instead of setting some in the remote
and some in the push operation.
</pre>
</div>
</content>
</entry>
<entry>
<title>remote: rename _load() to _lookup()</title>
<updated>2014-11-08T12:28:27+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-11-08T12:25:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=209425ce26d777794e9995f757656c7731df087e'/>
<id>209425ce26d777794e9995f757656c7731df087e</id>
<content type='text'>
This brings it in line with the rest of the lookup functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This brings it in line with the rest of the lookup functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2646 from libgit2/cmn/remote-rename</title>
<updated>2014-10-24T23:44:07+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@edwardthomson.com</email>
</author>
<published>2014-10-24T23:44:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=725cd5f29d0c3f7e4019dfc6aacf0fd1843210a9'/>
<id>725cd5f29d0c3f7e4019dfc6aacf0fd1843210a9</id>
<content type='text'>
remote: accept a repo and name for renaming</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
remote: accept a repo and name for renaming</pre>
</div>
</content>
</entry>
<entry>
<title>remote: accept a repo and name for renaming</title>
<updated>2014-10-24T14:25:59+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-10-24T14:25:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=46c8f7f8459e7062ca04d1cb8e11cf84e5cfbd0f'/>
<id>46c8f7f8459e7062ca04d1cb8e11cf84e5cfbd0f</id>
<content type='text'>
Remote objects are not meant to be changed from under the user. We did
this in rename, but only the name and left the refspecs, such that a
save would save the wrong refspecs (and a fetch and anything else would
use the wrong refspecs).

Instead, let's simply take a name and not change any loaded remote from
under the user.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remote objects are not meant to be changed from under the user. We did
this in rename, but only the name and left the refspecs, such that a
save would save the wrong refspecs (and a fetch and anything else would
use the wrong refspecs).

Instead, let's simply take a name and not change any loaded remote from
under the user.
</pre>
</div>
</content>
</entry>
<entry>
<title>remote: delete git_remote_supported_url()</title>
<updated>2014-10-24T11:40:42+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2014-10-24T10:19:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=0862f617da08cb371a647b3e454745f3b570de63'/>
<id>0862f617da08cb371a647b3e454745f3b570de63</id>
<content type='text'>
This function does not in fact tell us anything, as almost anything with
a colon in it is a valid rsync-style SSH path; it can not tell us that
we do not support ftp or afp or similar as those are still valid SSH
paths and we do support that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This function does not in fact tell us anything, as almost anything with
a colon in it is a valid rsync-style SSH path; it can not tell us that
we do not support ftp or afp or similar as those are still valid SSH
paths and we do support that.
</pre>
</div>
</content>
</entry>
</feed>
