<feed xmlns='http://www.w3.org/2005/Atom'>
<title>GitPython/git/test/fixtures, branch issue-301-reproduction</title>
<subtitle>Forked from https://github.com/gitpython-developers/GitPython</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/'/>
<entry>
<title>fix(config): selective cfg write;fix cfg parser</title>
<updated>2015-04-22T06:56:18+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-04-22T06:51:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=b9a2ea80aa9970bbd625da4c986d29a36c405629'/>
<id>b9a2ea80aa9970bbd625da4c986d29a36c405629</id>
<content type='text'>
* config parser now handles quoted values correctly. This doesn't hamper
  multi-line support.
* added regression test to travis to assure we will be warned if we
  rewrite and break the user's .gitconfig file
* only rewrite configuration files if we actually called a mutating
  method on the writer. Previously it would always rewrite it.

Fixes #285
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* config parser now handles quoted values correctly. This doesn't hamper
  multi-line support.
* added regression test to travis to assure we will be warned if we
  rewrite and break the user's .gitconfig file
* only rewrite configuration files if we actually called a mutating
  method on the writer. Previously it would always rewrite it.

Fixes #285
</pre>
</div>
</content>
</entry>
<entry>
<title>Fetch now deals with custom refspecs much better.</title>
<updated>2015-01-22T14:22:39+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-22T14:22:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=06bec1bcd1795192f4a4a274096f053afc8f80ec'/>
<id>06bec1bcd1795192f4a4a274096f053afc8f80ec</id>
<content type='text'>
Even though the test-csae only verifies this spec:
	+refs/pull/*:refs/heads/pull/*
I could locally verify that it indeed handles other ones just as well:
	+refs/pull/*:refs/pull/*

Fixes #243
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Even though the test-csae only verifies this spec:
	+refs/pull/*:refs/heads/pull/*
I could locally verify that it indeed handles other ones just as well:
	+refs/pull/*:refs/pull/*

Fixes #243
</pre>
</div>
</content>
</entry>
<entry>
<title>Added advance usage examples to tutorial and made minor fixes.</title>
<updated>2015-01-21T17:34:58+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-21T17:34:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=e4d3809161fc54d6913c0c2c7f6a7b51eebe223f'/>
<id>e4d3809161fc54d6913c0c2c7f6a7b51eebe223f</id>
<content type='text'>
GIT_PYTHON_TRACE would actually fail (now) if we debugged archive operations.

Related to #239
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
GIT_PYTHON_TRACE would actually fail (now) if we debugged archive operations.

Related to #239
</pre>
</div>
</content>
</entry>
<entry>
<title>GitConfigParser now respects and merges 'include' sections</title>
<updated>2015-01-14T11:46:51+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-14T11:46:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=619c989915b568e4737951fafcbae14cd06d6ea6'/>
<id>619c989915b568e4737951fafcbae14cd06d6ea6</id>
<content type='text'>
We implement it as described in this article:
http://stackoverflow.com/questions/1557183/is-it-possible-to-include-a-file-in-your-gitconfig

Thus we handle

* cycles
* relative and absolute include paths
* write-backs in case of writable GitConfigParser instances

Fixes #201
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We implement it as described in this article:
http://stackoverflow.com/questions/1557183/is-it-possible-to-include-a-file-in-your-gitconfig

Thus we handle

* cycles
* relative and absolute include paths
* write-backs in case of writable GitConfigParser instances

Fixes #201
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented multi-line parsing of git-config to the point where a sepcific test-file is working.</title>
<updated>2015-01-10T12:59:29+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-10T12:59:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=b825dc74773ffa5c7a45b48d72616b222ad2023e'/>
<id>b825dc74773ffa5c7a45b48d72616b222ad2023e</id>
<content type='text'>
This brings us much closer to what git can do, and should at least prevent errors while reading
configuration files (which would break a lot of features, like handling of remotes since these rely
reading configuration files).

Fixes #112
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This brings us much closer to what git can do, and should at least prevent errors while reading
configuration files (which would break a lot of features, like handling of remotes since these rely
reading configuration files).

Fixes #112
</pre>
</div>
</content>
</entry>
<entry>
<title>Added test for complex blame revision query.</title>
<updated>2015-01-09T17:00:38+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-09T16:58:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=a0cb95c5df7a559633c48f5b0f200599c4a62091'/>
<id>a0cb95c5df7a559633c48f5b0f200599c4a62091</id>
<content type='text'>
It works as expected by me at least.
Related to #71
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It works as expected by me at least.
Related to #71
</pre>
</div>
</content>
</entry>
<entry>
<title>Added test to verify binary diffs are working as well.</title>
<updated>2015-01-09T16:16:35+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-09T12:15:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=18caa610d50b92331485013584f5373804dd0416'/>
<id>18caa610d50b92331485013584f5373804dd0416</id>
<content type='text'>
Related to #74
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Related to #74
</pre>
</div>
</content>
</entry>
<entry>
<title>Added test to verify binary diffs are working as well.</title>
<updated>2015-01-09T12:17:04+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-09T12:15:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=0d9f1495004710b77767393a29f33df76d7b0fb5'/>
<id>0d9f1495004710b77767393a29f33df76d7b0fb5</id>
<content type='text'>
Related to #74
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Related to #74
</pre>
</div>
</content>
</entry>
<entry>
<title>Added test to assure blame can deal with binary patches.</title>
<updated>2015-01-09T11:49:03+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-09T11:49:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=17f5d13a7a741dcbb2a30e147bdafe929cff4697'/>
<id>17f5d13a7a741dcbb2a30e147bdafe929cff4697</id>
<content type='text'>
Fixes #74
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #74
</pre>
</div>
</content>
</entry>
<entry>
<title>Added support for rename detection in raw mode (which is the default).</title>
<updated>2015-01-08T10:16:49+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-08T10:13:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=987f9bbd08446de3f9d135659f2e36ad6c9d14fb'/>
<id>987f9bbd08446de3f9d135659f2e36ad6c9d14fb</id>
<content type='text'>
Fixes #36
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #36
</pre>
</div>
</content>
</entry>
</feed>
