<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitpython.git/git/repo, branch 2.0.8</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>Merge pull request #496 from haizaar/master</title>
<updated>2016-08-02T05:53:42+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2016-08-02T05:53:42+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=e866c4a9897572a550f8ec13b53f6665754050cc'/>
<id>e866c4a9897572a550f8ec13b53f6665754050cc</id>
<content type='text'>
is_dirty supports path. Fixes #482.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
is_dirty supports path. Fixes #482.</pre>
</div>
</content>
</entry>
<entry>
<title>is_dirty supports path. Fixes #482.</title>
<updated>2016-08-01T11:33:43+00:00</updated>
<author>
<name>Zaar Hai</name>
<email>haizaar@haizaar.com</email>
</author>
<published>2016-08-01T11:33:43+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=c3c70daba7a3d195d22ded363c9915b5433ce054'/>
<id>c3c70daba7a3d195d22ded363c9915b5433ce054</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(blame): lazily fetch full commit message</title>
<updated>2016-07-17T08:31:53+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2016-07-17T08:31:53+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=2ff3a3e72b1ff79e75777ccdddc86f8540ce833d'/>
<id>2ff3a3e72b1ff79e75777ccdddc86f8540ce833d</id>
<content type='text'>
That way, we will not only get the summary line
contained in the blame, but fetch the full message.
This is more costly than the previous implementation
allowed it to be, but being less surprising/correct
certainly is the preferred behaviour here.

Fixes #485
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
That way, we will not only get the summary line
contained in the blame, but fetch the full message.
This is more costly than the previous implementation
allowed it to be, but being less surprising/correct
certainly is the preferred behaviour here.

Fixes #485
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(repo): prevent error messages from being swallowed</title>
<updated>2016-06-13T07:03:13+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2016-06-13T07:00:28+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=ec830a25d39d4eb842ae016095ba257428772294'/>
<id>ec830a25d39d4eb842ae016095ba257428772294</id>
<content type='text'>
This issue must have rosen from `to_progress_instance()`
being inserted in a spot where `None` was a legit value.

Fixes #462
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This issue must have rosen from `to_progress_instance()`
being inserted in a spot where `None` was a legit value.

Fixes #462
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(misc): cleanup and docs</title>
<updated>2016-05-29T08:29:54+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2016-05-29T08:29:54+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=98889c3ec73bf929cdcb44b92653e429b4955652'/>
<id>98889c3ec73bf929cdcb44b92653e429b4955652</id>
<content type='text'>
Minor adjustments to PR to match current code style.

Related to #450
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Minor adjustments to PR to match current code style.

Related to #450
</pre>
</div>
</content>
</entry>
<entry>
<title>The progress arg to push, pull, fetch and clone is now a python callable.</title>
<updated>2016-05-28T11:05:23+00:00</updated>
<author>
<name>Barry Scott</name>
<email>barry@barrys-emacs.org</email>
</author>
<published>2016-05-28T11:05:23+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=b4492c7965cd8e3c5faaf28b2a6414b04984720b'/>
<id>b4492c7965cd8e3c5faaf28b2a6414b04984720b</id>
<content type='text'>
This simplifies the API and removes the parser, RemoteProgres,
from the API as RemoteProgress is an internal detail of the implementation.

progress is accepted as:
* None - drop progress messages
* callable (function etc) - call the function with the same args as update
* object - assume its RemoteProgress derived as use as before

RemoteProgress takes an optional progress_function argument.
It will call the progress function if not None otherwise call self.update
as it used to.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This simplifies the API and removes the parser, RemoteProgres,
from the API as RemoteProgress is an internal detail of the implementation.

progress is accepted as:
* None - drop progress messages
* callable (function etc) - call the function with the same args as update
* object - assume its RemoteProgress derived as use as before

RemoteProgress takes an optional progress_function argument.
It will call the progress function if not None otherwise call self.update
as it used to.</pre>
</div>
</content>
</entry>
<entry>
<title>Ignore trailing last empty string in .split() output</title>
<updated>2016-05-24T17:27:32+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-05-24T17:27:32+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=187fe114585be2d367a81997509b40e62fdbc18e'/>
<id>187fe114585be2d367a81997509b40e62fdbc18e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Check if byte string is empty for py3 compatibility</title>
<updated>2016-05-24T16:02:13+00:00</updated>
<author>
<name>Jonathan Chu</name>
<email>jonathan.chu@me.com</email>
</author>
<published>2016-05-24T16:02:13+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=903826a50d401d8829912e4bcd8412b8cdadac02'/>
<id>903826a50d401d8829912e4bcd8412b8cdadac02</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Split lines by new line characters</title>
<updated>2016-05-24T15:19:14+00:00</updated>
<author>
<name>Jonathan Chu</name>
<email>jonathan.chu@me.com</email>
</author>
<published>2016-05-24T15:19:14+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=73ab28744df3fc292a71c3099ff1f3a20471f188'/>
<id>73ab28744df3fc292a71c3099ff1f3a20471f188</id>
<content type='text'>
Opt to split lines by the new line character instead of letting
`splitlines()` do this. This helps catch the issue when there are
special characters in the line, particular the commit summary section.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Opt to split lines by the new line character instead of letting
`splitlines()` do this. This helps catch the issue when there are
special characters in the line, particular the commit summary section.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use correct mode for executable files</title>
<updated>2016-05-19T11:47:40+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2016-05-19T11:47:40+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=bebc4f56f4e9a0bd3e88fcca3d40ece090252e82'/>
<id>bebc4f56f4e9a0bd3e88fcca3d40ece090252e82</id>
<content type='text'>
Fixes #430
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #430
</pre>
</div>
</content>
</entry>
</feed>
