<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitpython.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>Merge pull request #1119 from yvolchkov/master</title>
<updated>2021-02-05T13:04:39+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>sebastian.thiel@icloud.com</email>
</author>
<published>2021-02-05T13:04:39+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=9de6450084eee405da03b7a948015738b15f59e7'/>
<id>9de6450084eee405da03b7a948015738b15f59e7</id>
<content type='text'>
Fix inheritance issue at commit.iter_items</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix inheritance issue at commit.iter_items</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>Add license argument to setup.py</title>
<updated>2021-01-10T15:04:55+00:00</updated>
<author>
<name>Harmon</name>
<email>Harmon758@gmail.com</email>
</author>
<published>2021-01-10T15:04:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=dd3cdfc9d647ecb020625351e0ff3a7346e1918d'/>
<id>dd3cdfc9d647ecb020625351e0ff3a7346e1918d</id>
<content type='text'>
Resolves #1106
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Resolves #1106
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix package name in intro docs to reflect actual pypi name (with capitalization)</title>
<updated>2021-01-09T01:18:59+00:00</updated>
<author>
<name>Kevin Reynolds</name>
<email>kreynolds@roblox.com</email>
</author>
<published>2021-01-09T00:41:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=2765dfd72cd5b0958ec574bea867f5dc1c086ab0'/>
<id>2765dfd72cd5b0958ec574bea867f5dc1c086ab0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>fix tests the fast way</title>
<updated>2021-01-08T02:39:45+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>sebastian.thiel@icloud.com</email>
</author>
<published>2021-01-08T02:39:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=d8cad756f357eb587f9f85f586617bff6d6c3ccf'/>
<id>d8cad756f357eb587f9f85f586617bff6d6c3ccf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
