<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitpython.git/git/remote.py, branch 2.0.7</title>
<subtitle>github.com: gitpython-developers/GitPython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/'/>
<entry>
<title>fix(remote): lazy PushInfo.old_commit initialization</title>
<updated>2016-06-20T05:01:17+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2016-06-20T05:01:17+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=451504f1e1aa84fb3de77adb6c554b9eb4a7d0ab'/>
<id>451504f1e1aa84fb3de77adb6c554b9eb4a7d0ab</id>
<content type='text'>
We will now populate the old_commit on demand, which will
allow us to keep going even if the given commit does not
exist locally.

Fixes #461
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We will now populate the old_commit on demand, which will
allow us to keep going even if the given commit does not
exist locally.

Fixes #461
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix for parsing non-ASCII chars in status lines</title>
<updated>2016-06-14T19:49:31+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-06-14T05:51:25+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=5e02afbb7343a7a4e07e3dcf8b845ea2764d927c'/>
<id>5e02afbb7343a7a4e07e3dcf8b845ea2764d927c</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 #446 from guyzmo/updating_remote_url_handling</title>
<updated>2016-06-14T05:46:26+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2016-06-14T05:46:26+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=9bebaca85a19e0ac8a776ee09981f0c826e1cafa'/>
<id>9bebaca85a19e0ac8a776ee09981f0c826e1cafa</id>
<content type='text'>
Adding support for git remote set-url/get-url API to Remote</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adding support for git remote set-url/get-url API to Remote</pre>
</div>
</content>
</entry>
<entry>
<title>fix(flake): misc whitespace fixes</title>
<updated>2016-06-14T05:29:12+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2016-06-14T05:29:12+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=4510b3c42b85305c95c1f39be2b9872be52c2e5e'/>
<id>4510b3c42b85305c95c1f39be2b9872be52c2e5e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(misc): various cleanup</title>
<updated>2016-06-13T08:07:40+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2016-06-13T08:07:40+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=15ee5a505b43741cdb7c79f41ebfa3d881910a6c'/>
<id>15ee5a505b43741cdb7c79f41ebfa3d881910a6c</id>
<content type='text'>
Just went through all changes and adjusted them to the best of my
abilities. As there are no tests to claim otherwise, I believe
this is correct enough.

However, it becomes evident that it's no longer possible to just
make changes without backing them with a respective test.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Just went through all changes and adjusted them to the best of my
abilities. As there are no tests to claim otherwise, I believe
this is correct enough.

However, it becomes evident that it's no longer possible to just
make changes without backing them with a respective test.
</pre>
</div>
</content>
</entry>
<entry>
<title>Switching the `urls` property to use `git remote show` instead of `git remote get-url`</title>
<updated>2016-06-08T17:47:43+00:00</updated>
<author>
<name>Guyzmo</name>
<email>guyzmo+github@m0g.net</email>
</author>
<published>2016-06-08T17:45:35+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=3f4b410c955ea08bfb7842320afa568090242679'/>
<id>3f4b410c955ea08bfb7842320afa568090242679</id>
<content type='text'>
`get-url` is a new API that is not widely available yet (introduced in git 2.7.0), and
provokes failure on travis.

Signed-off-by: Guyzmo &lt;guyzmo+github@m0g.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`get-url` is a new API that is not widely available yet (introduced in git 2.7.0), and
provokes failure on travis.

Signed-off-by: Guyzmo &lt;guyzmo+github@m0g.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Adding support for git remote set-url/get-url API to Remote</title>
<updated>2016-06-08T17:34:29+00:00</updated>
<author>
<name>Guyzmo</name>
<email>guyzmo+github@m0g.net</email>
</author>
<published>2016-05-26T18:43:28+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=b366d3fabd79e921e30b44448cb357a05730c42f'/>
<id>b366d3fabd79e921e30b44448cb357a05730c42f</id>
<content type='text'>
Both commands enable handling of a little known feature
of git, which is to support multiple URL for one remote.
You can add multiple url using the `set_url` subcommand of
`git remote`. As listing them is also handy, there's a
nice method to do it, using `get_url`.

* adding set_url method that maps to the git remote set-url command¶
 * can be used to set an URL, or replace an URL with optional positional arg¶
 * can be used to add, delete URL with kwargs (matching set-url options)¶
* adding add_url, delete_url methods that wraps around set_url for conveniency¶
* adding urls property that yields an iterator over the setup urls for a remote¶
* adding a test suite that checks all use case scenarii of this added API.¶

Signed-off-by: Guyzmo &lt;guyzmo+github@m0g.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Both commands enable handling of a little known feature
of git, which is to support multiple URL for one remote.
You can add multiple url using the `set_url` subcommand of
`git remote`. As listing them is also handy, there's a
nice method to do it, using `get_url`.

* adding set_url method that maps to the git remote set-url command¶
 * can be used to set an URL, or replace an URL with optional positional arg¶
 * can be used to add, delete URL with kwargs (matching set-url options)¶
* adding add_url, delete_url methods that wraps around set_url for conveniency¶
* adding urls property that yields an iterator over the setup urls for a remote¶
* adding a test suite that checks all use case scenarii of this added API.¶

Signed-off-by: Guyzmo &lt;guyzmo+github@m0g.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'upstream/master' into pr-cmd-raise-with-stderr-on-error</title>
<updated>2016-06-06T08:27:20+00:00</updated>
<author>
<name>Barry Scott</name>
<email>barry@barrys-emacs.org</email>
</author>
<published>2016-06-06T08:27:20+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=35658887753da7da9a32a297346fd4ee6e53d45c'/>
<id>35658887753da7da9a32a297346fd4ee6e53d45c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix regex</title>
<updated>2016-05-30T19:23:45+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-05-30T19:20:47+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=25844b80c56890abc79423a7a727a129b2b9db85'/>
<id>25844b80c56890abc79423a7a727a129b2b9db85</id>
<content type='text'>
This catches the case where the matched line contains "(" or ")"
characters.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This catches the case where the matched line contains "(" or ")"
characters.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix flake8 complaints</title>
<updated>2016-05-30T14:05:32+00:00</updated>
<author>
<name>Barry Scott</name>
<email>barry@barrys-emacs.org</email>
</author>
<published>2016-05-30T14:05:32+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=46201b346fec29f9cb740728a3c20266094d58b2'/>
<id>46201b346fec29f9cb740728a3c20266094d58b2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
