<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitpython.git/git, branch 3.1.13</title>
<subtitle>github.com: gitpython-developers/GitPython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/'/>
<entry>
<title>version bump</title>
<updated>2021-02-09T14:47:49+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>sebastian.thiel@icloud.com</email>
</author>
<published>2021-02-09T14:47:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=7988bb8ce25eb171d7fea88e3e6496504d0cb8f8'/>
<id>7988bb8ce25eb171d7fea88e3e6496504d0cb8f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix inheritance issue at commit.iter_items</title>
<updated>2021-02-05T11:09:10+00:00</updated>
<author>
<name>Yuri Volchkov</name>
<email>yuri@volch.org</email>
</author>
<published>2021-02-05T10:22:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=af86f05d11c3613a418f7d3babfdc618e1cac805'/>
<id>af86f05d11c3613a418f7d3babfdc618e1cac805</id>
<content type='text'>
The iterator used to yield Commit() objects, which does not play well
with inheritance. Yield cls() instead.

Signed-off-by: Yuri Volchkov &lt;yuri@volch.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The iterator used to yield Commit() objects, which does not play well
with inheritance. Yield cls() instead.

Signed-off-by: Yuri Volchkov &lt;yuri@volch.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix universal_newlines TypeError</title>
<updated>2021-01-28T15:37:53+00:00</updated>
<author>
<name>x-santiaga-x</name>
<email>santa4github@yandex.ru</email>
</author>
<published>2021-01-28T11:16:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=3c19a6e1004bb8c116bfc7823477118490a2eef6'/>
<id>3c19a6e1004bb8c116bfc7823477118490a2eef6</id>
<content type='text'>
Fixes #1116
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #1116
</pre>
</div>
</content>
</entry>
<entry>
<title>Make git.cmd.Git.CatFileContentStream iterable</title>
<updated>2021-01-17T02:31:49+00:00</updated>
<author>
<name>Hex052</name>
<email>elijahiff@gmail.com</email>
</author>
<published>2021-01-16T02:04:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=4a1339a3d6751b2e7c125aa3195bdc872d45a887'/>
<id>4a1339a3d6751b2e7c125aa3195bdc872d45a887</id>
<content type='text'>
Add __next__ method to git.cmd.Git.CatFileContentStream, so it can actually be used as an iterable</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add __next__ method to git.cmd.Git.CatFileContentStream, so it can actually be used as an iterable</pre>
</div>
</content>
</entry>
<entry>
<title>fix(fetch): use the correct FETCH_HEAD from within a worktree</title>
<updated>2021-01-14T04:04:03+00:00</updated>
<author>
<name>Giel van Schijndel</name>
<email>Giel.vanSchijndel@tomtom.com</email>
</author>
<published>2021-01-13T14:23:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=037d62a9966743cf7130193fa08d5182df251b27'/>
<id>037d62a9966743cf7130193fa08d5182df251b27</id>
<content type='text'>
FETCH_HEAD is one of the symbolic references local to the current
worktree and as such should _not_ be looked up in the 'common_dir'. But
instead of just hard coding the "right thing" (git_dir) lets defer this
to the SymbolicReference class which already contains this knowledge in
its 'abspath' property.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
FETCH_HEAD is one of the symbolic references local to the current
worktree and as such should _not_ be looked up in the 'common_dir'. But
instead of just hard coding the "right thing" (git_dir) lets defer this
to the SymbolicReference class which already contains this knowledge in
its 'abspath' property.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix flake</title>
<updated>2021-01-08T02:47:11+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>sebastian.thiel@icloud.com</email>
</author>
<published>2021-01-08T02:47:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=f653af66e4c9461579ec44db50e113facf61e2d3'/>
<id>f653af66e4c9461579ec44db50e113facf61e2d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>First attempt to fix failing test of #1103</title>
<updated>2021-01-07T04:54:56+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>sebastian.thiel@icloud.com</email>
</author>
<published>2021-01-07T04:45:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=21e21d04bb216a1d7dc42b97bf6dc64864bb5968'/>
<id>21e21d04bb216a1d7dc42b97bf6dc64864bb5968</id>
<content type='text'>
However, the test asserts on the provided context to be correct,
which is hard to do in this branch while it's easy to doubt the value
of this.

Lastly, there seems to be no way to ignore errors in `git` without
muting all output, which is in fact parsed.

Maybe it's possible to ignore errors while parsing the new kind of
error message.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
However, the test asserts on the provided context to be correct,
which is hard to do in this branch while it's easy to doubt the value
of this.

Lastly, there seems to be no way to ignore errors in `git` without
muting all output, which is in fact parsed.

Maybe it's possible to ignore errors while parsing the new kind of
error message.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix handle_diff_line for -z option.</title>
<updated>2021-01-05T17:13:51+00:00</updated>
<author>
<name>Martin Liska</name>
<email>mliska@suse.cz</email>
</author>
<published>2021-01-05T14:53:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=69b75e167408d0dfa3ff8a00c185b3a0bc965b58'/>
<id>69b75e167408d0dfa3ff8a00c185b3a0bc965b58</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>try fixing up test fixtures and implementation</title>
<updated>2021-01-05T17:13:51+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>sebastian.thiel@icloud.com</email>
</author>
<published>2021-01-05T13:53:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=82189398e3b9e8f5d8f97074784d77d7c27086ae'/>
<id>82189398e3b9e8f5d8f97074784d77d7c27086ae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add '-z' on top of '--raw' to avoid path name mangling</title>
<updated>2021-01-05T17:13:51+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>sebastian.thiel@icloud.com</email>
</author>
<published>2021-01-05T12:34:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=3cb7288d4f4a93d07c9989c90511f6887bcaeb25'/>
<id>3cb7288d4f4a93d07c9989c90511f6887bcaeb25</id>
<content type='text'>
Authored based on
https://github.com/gitpython-developers/GitPython/issues/1099#issuecomment-754606044

Fixes #1099
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Authored based on
https://github.com/gitpython-developers/GitPython/issues/1099#issuecomment-754606044

Fixes #1099
</pre>
</div>
</content>
</entry>
</feed>
