<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitpython.git/git/repo, branch fix-octal-escaped-path-parser-bug</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>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://91.123.203.49/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://91.123.203.49/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://91.123.203.49/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://91.123.203.49/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://91.123.203.49/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://91.123.203.49/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>
<entry>
<title>Clarify costs of certain properties</title>
<updated>2016-05-19T11:09:51+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2016-05-19T11:09:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=2376bd397f084902196a929171c7f7869529bffc'/>
<id>2376bd397f084902196a929171c7f7869529bffc</id>
<content type='text'>
Fixes #428
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #428
</pre>
</div>
</content>
</entry>
<entry>
<title>Return all available data from git-blame</title>
<updated>2016-04-14T14:11:34+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-04-14T11:29:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=2f1b69ad52670a67e8b766e89451080219871739'/>
<id>2f1b69ad52670a67e8b766e89451080219871739</id>
<content type='text'>
Returning this now to avoid having to change the function's return value
structure later on if we want to emit more information.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Returning this now to avoid having to change the function's return value
structure later on if we want to emit more information.
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop dependency on six</title>
<updated>2016-04-14T14:11:14+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-04-14T13:58:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=6964e3efc4ac779d458733a05c9d71be2194b2ba'/>
<id>6964e3efc4ac779d458733a05c9d71be2194b2ba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow passing args to git-blame</title>
<updated>2016-04-13T14:44:17+00:00</updated>
<author>
<name>Vincent Driessen</name>
<email>me@nvie.com</email>
</author>
<published>2016-04-13T14:02:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=f533a68cb5295f912da05e061a0b9bca05b3f0c8'/>
<id>f533a68cb5295f912da05e061a0b9bca05b3f0c8</id>
<content type='text'>
This can be used to pass options like -C or -M.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This can be used to pass options like -C or -M.
</pre>
</div>
</content>
</entry>
</feed>
