<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitpython.git/git/objects, branch issue-301-reproduction</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>Added NullHandlers to all loggers to preven "No handler" messages</title>
<updated>2015-06-25T13:24:40+00:00</updated>
<author>
<name>James Nowell</name>
<email>jcnowell@missionfocus.com</email>
</author>
<published>2015-06-25T13:24:40+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=aa0ccead680443b07fd675f8b906758907bdb415'/>
<id>aa0ccead680443b07fd675f8b906758907bdb415</id>
<content type='text'>
When the code is run without setting up loggers, the loggers have no
handlers for the emitted messages. The logging module displays:
`No handlers could be found for logger "git.cmd"` on the
console. By adding a NullHandler (a no-op) the message disappears,
and doesn't affect logging when other handlers are configured.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When the code is run without setting up loggers, the loggers have no
handlers for the emitted messages. The logging module displays:
`No handlers could be found for logger "git.cmd"` on the
console. By adding a NullHandler (a no-op) the message disappears,
and doesn't affect logging when other handlers are configured.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix type error (startswith expects bytes)</title>
<updated>2015-05-13T21:28:14+00:00</updated>
<author>
<name>John L. Walker</name>
<email>john.lou.walker@gmail.com</email>
</author>
<published>2015-05-13T21:28:14+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=9563d27fbde02b8b2a8b0d808759cb235b4e083b'/>
<id>9563d27fbde02b8b2a8b0d808759cb235b4e083b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix problem with submodules on Windows</title>
<updated>2015-04-07T13:36:49+00:00</updated>
<author>
<name>Markus Siemens</name>
<email>siemens1993@gmail.com</email>
</author>
<published>2015-04-07T12:33:39+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=1c2502ee83927437442b13b83f3a7976e4146a01'/>
<id>1c2502ee83927437442b13b83f3a7976e4146a01</id>
<content type='text'>
On Windows, `repo.create_submodule(...)` failed because git didn't recognize
the worktree path set in `.git/modules/sub/config` (`fatal: bad config file
line 6 in ./config`). This commit makes `_write_git_file_and_module_config`
convert the worktree path to the linux format (forward slashes) which git
recognizes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On Windows, `repo.create_submodule(...)` failed because git didn't recognize
the worktree path set in `.git/modules/sub/config` (`fatal: bad config file
line 6 in ./config`). This commit makes `_write_git_file_and_module_config`
convert the worktree path to the linux format (forward slashes) which git
recognizes.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo</title>
<updated>2015-03-27T14:04:58+00:00</updated>
<author>
<name>Kyle P. Johnson</name>
<email>kyle@kyle-p-johnson.com</email>
</author>
<published>2015-03-27T14:04:58+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=21a6cb7336b61f904198f1d48526dcbe9cba6eec'/>
<id>21a6cb7336b61f904198f1d48526dcbe9cba6eec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(iter-commit): ambiguous argument error</title>
<updated>2015-03-02T13:19:05+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-03-02T13:19:05+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=a5e607e8aa62ca3778f1026c27a927ee5c79749b'/>
<id>a5e607e8aa62ca3778f1026c27a927ee5c79749b</id>
<content type='text'>
In repositories like

	&gt; git branch -a
	* test
	&gt; ls
	test

`repo.iter_commits` failed due to an ambigous argument
(`'git rev-list test`).
Now this cannot happen anymore.

fixes #264
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In repositories like

	&gt; git branch -a
	* test
	&gt; ls
	test

`repo.iter_commits` failed due to an ambigous argument
(`'git rev-list test`).
Now this cannot happen anymore.

fixes #264
</pre>
</div>
</content>
</entry>
<entry>
<title>Apparently, git 1.7.9 supports git-files too, lets assume it's starting at 1.7.0</title>
<updated>2015-02-20T17:11:13+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-02-20T17:11:13+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=e2feb62c17acd1dddb6cd125d8b90933c32f89e1'/>
<id>e2feb62c17acd1dddb6cd125d8b90933c32f89e1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Adjust minimum git version with git-file support.</title>
<updated>2015-02-19T17:29:10+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-02-19T17:29:10+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=3d74543a545a9468cabec5d20519db025952efed'/>
<id>3d74543a545a9468cabec5d20519db025952efed</id>
<content type='text'>
As I am pretty sure to have tested it with 1.7.0, I assume they
added the git file feature somewhere between .0 .10.

Fixes #252
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As I am pretty sure to have tested it with 1.7.0, I assume they
added the git file feature somewhere between .0 .10.

Fixes #252
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix flake8 issue.</title>
<updated>2015-02-19T16:12:15+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-02-19T16:12:15+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=0f5320e8171324a002d3769824152cf5166a21a2'/>
<id>0f5320e8171324a002d3769824152cf5166a21a2</id>
<content type='text'>
It's new in the latest version of flake - thanks travis for letting me know.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's new in the latest version of flake - thanks travis for letting me know.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use uuid instead of tempfile.mkdtmp, which created an actual directory.</title>
<updated>2015-02-19T15:56:13+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-02-19T15:56:13+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=5ac93b1d7e0694ceb303ee72c312921a9b1588f4'/>
<id>5ac93b1d7e0694ceb303ee72c312921a9b1588f4</id>
<content type='text'>
That, over time, could have caused slow downs due to file-system hassle.

Fixes #258
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
That, over time, could have caused slow downs due to file-system hassle.

Fixes #258
</pre>
</div>
</content>
</entry>
<entry>
<title>Overhauled all tutorials, and placed them in a unit-test.</title>
<updated>2015-01-22T11:40:07+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-22T11:40:07+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=b54b9399920375f0bab14ff8495c0ea3f5fa1c33'/>
<id>b54b9399920375f0bab14ff8495c0ea3f5fa1c33</id>
<content type='text'>
That way they are protected from regression.

Fixes #239
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
That way they are protected from regression.

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