<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitpython.git/git/remote.py, branch 3.1.26</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>Extend IterableList[PushInfo] instead of IterableList</title>
<updated>2021-11-13T07:20:20+00:00</updated>
<author>
<name>Sjoerd Langkemper</name>
<email>sjoerd-github@linuxonly.nl</email>
</author>
<published>2021-11-10T12:40:06+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=35f7e9486c8bc596506a6872c7e0df37c4a35da3'/>
<id>35f7e9486c8bc596506a6872c7e0df37c4a35da3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Specify type for PushInfoList.error</title>
<updated>2021-11-13T07:20:20+00:00</updated>
<author>
<name>Sjoerd Langkemper</name>
<email>sjoerd-github@linuxonly.nl</email>
</author>
<published>2021-11-09T15:16:44+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=e67e458ece9077f6c6db9fc6a867ac61e0ae6579'/>
<id>e67e458ece9077f6c6db9fc6a867ac61e0ae6579</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix type handing on PushInfoList</title>
<updated>2021-11-13T07:20:20+00:00</updated>
<author>
<name>Sjoerd Langkemper</name>
<email>sjoerd-github@linuxonly.nl</email>
</author>
<published>2021-11-09T12:17:02+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=8797904d04abc2df5da93ca7d799da21e5a50cb5'/>
<id>8797904d04abc2df5da93ca7d799da21e5a50cb5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename exception to error, raise_on_error to raise_if_error</title>
<updated>2021-11-13T07:20:20+00:00</updated>
<author>
<name>Sjoerd Langkemper</name>
<email>sjoerd-github@linuxonly.nl</email>
</author>
<published>2021-11-08T16:20:32+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=9240de9f788396c45199cd3d9fa7fdbd8a5666c4'/>
<id>9240de9f788396c45199cd3d9fa7fdbd8a5666c4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Let remote.push return a PushInfoList</title>
<updated>2021-11-13T07:20:20+00:00</updated>
<author>
<name>Sjoerd Langkemper</name>
<email>sjoerd-github@linuxonly.nl</email>
</author>
<published>2021-10-12T09:23:39+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=3b82fa3018a21f0eeb76034ecb8fb4dedea9a966'/>
<id>3b82fa3018a21f0eeb76034ecb8fb4dedea9a966</id>
<content type='text'>
List-like, so that it's backward compatible. But it has a new method
raise_on_error, that throws an exception if anything failed to push.

Related to #621
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
List-like, so that it's backward compatible. But it has a new method
raise_on_error, that throws an exception if anything failed to push.

Related to #621
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typing issues with delete_head and Remote.add</title>
<updated>2021-09-20T22:03:45+00:00</updated>
<author>
<name>Russ Allbery</name>
<email>eagle@eyrie.org</email>
</author>
<published>2021-09-20T20:53:42+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=5f4b4dbff46fae4c899f5573aea5a7266a41eeeb'/>
<id>5f4b4dbff46fae4c899f5573aea5a7266a41eeeb</id>
<content type='text'>
delete_head and Head.delete historically accept either Head objects
or a str name of a head.  Adjust the typing to match.  This
unfortunately requires suppressing type warnings in the signature of
RemoteReference.delete, since it inherits from Head but does not
accept str (since it needs access to the richer data of
RemoteReference).

Using assignment to make add an alias for create unfortunately
confuses mypy, since it loses track of the fact that it's a
classmethod and starts treating it like a staticmethod.  Replace
with a stub wrapper instead.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
delete_head and Head.delete historically accept either Head objects
or a str name of a head.  Adjust the typing to match.  This
unfortunately requires suppressing type warnings in the signature of
RemoteReference.delete, since it inherits from Head but does not
accept str (since it needs access to the richer data of
RemoteReference).

Using assignment to make add an alias for create unfortunately
confuses mypy, since it loses track of the fact that it's a
classmethod and starts treating it like a staticmethod.  Replace
with a stub wrapper instead.
</pre>
</div>
</content>
</entry>
<entry>
<title>update tests and add a comment about different behaviour of 'push' vs 'fetch'</title>
<updated>2021-09-18T01:26:28+00:00</updated>
<author>
<name>sroet</name>
<email>sanderroet@hotmail.com</email>
</author>
<published>2021-09-13T15:59:24+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=0a58afea0d7c3ff57916ddd694d052123e29087f'/>
<id>0a58afea0d7c3ff57916ddd694d052123e29087f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>reuse kill_after_timeout kwarg</title>
<updated>2021-09-18T01:26:28+00:00</updated>
<author>
<name>sroet</name>
<email>sanderroet@hotmail.com</email>
</author>
<published>2021-09-13T15:05:45+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=ef0ca654f859d6caaf2a2029cb691d5beec79ed5'/>
<id>ef0ca654f859d6caaf2a2029cb691d5beec79ed5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>reset default timeout to None</title>
<updated>2021-09-18T01:26:28+00:00</updated>
<author>
<name>sroet</name>
<email>sanderroet@hotmail.com</email>
</author>
<published>2021-09-10T15:06:53+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=d6cdafe223fe2e4ec17c52d4bd5ad7affc599814'/>
<id>d6cdafe223fe2e4ec17c52d4bd5ad7affc599814</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>allow for timeout propagation</title>
<updated>2021-09-18T01:26:28+00:00</updated>
<author>
<name>sroet</name>
<email>sanderroet@hotmail.com</email>
</author>
<published>2021-09-10T11:45:24+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=9925785cbd29e02a4e38dfd29112a3a9533fc170'/>
<id>9925785cbd29e02a4e38dfd29112a3a9533fc170</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
