<feed xmlns='http://www.w3.org/2005/Atom'>
<title>GitPython/git/repo, branch 0.3.7</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>Added previously missing parameter documentation for Repo.__init__ .</title>
<updated>2015-02-09T20:05:41+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-02-09T20:05:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=f51fe3e66d358e997f4af4e91a894a635f7cb601'/>
<id>f51fe3e66d358e997f4af4e91a894a635f7cb601</id>
<content type='text'>
Related to #255
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Related to #255
</pre>
</div>
</content>
</entry>
<entry>
<title>Added test for `sshkey` context manager.</title>
<updated>2015-01-22T15:45:12+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-22T15:45:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=0ddbe4bc24e634e6496abd3bc6ce3c4377cdf2fb'/>
<id>0ddbe4bc24e634e6496abd3bc6ce3c4377cdf2fb</id>
<content type='text'>
It verifies that the script is actually called.
Interestingly, the shell script version works within an msysgit environment
on windows.

Fixes #234
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It verifies that the script is actually called.
Interestingly, the shell script version works within an msysgit environment
on windows.

Fixes #234
</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='https://git.otimperi.dev/GitPython/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>
<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>Assured that branch changes are properly handled.</title>
<updated>2015-01-21T07:53:14+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-21T07:52:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=47ac37be2e0e14e958ad24dc8cba1fa4b7f78700'/>
<id>47ac37be2e0e14e958ad24dc8cba1fa4b7f78700</id>
<content type='text'>
Previously we could try to remove the branch we are on.
Of course, we have a test-case elaborate enough to verify we don't
destroy changes in submodules accidentally. Therefore I am confident
that this implementation is correct.

Fixes #49
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously we could try to remove the branch we are on.
Of course, we have a test-case elaborate enough to verify we don't
destroy changes in submodules accidentally. Therefore I am confident
that this implementation is correct.

Fixes #49
</pre>
</div>
</content>
</entry>
<entry>
<title>Greatly improved possible safety of Submodule.update(), which is used by default.</title>
<updated>2015-01-20T19:56:33+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-20T19:56:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=9fbae711b76a4f2fa9345f43da6d2cdedd75d6c3'/>
<id>9fbae711b76a4f2fa9345f43da6d2cdedd75d6c3</id>
<content type='text'>
Previously, the implementation would gladly reset new commits in submodules,
and/or reset a dirty working tree.

Now the new force_reset/force flag has to be specified explicitly to get back
to the old behaviour.

All submodule tests except for one are working.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, the implementation would gladly reset new commits in submodules,
and/or reset a dirty working tree.

Now the new force_reset/force flag has to be specified explicitly to get back
to the old behaviour.

All submodule tests except for one are working.
</pre>
</div>
</content>
</entry>
<entry>
<title>Improved installation docs to mention `pip`, not `easy_install`</title>
<updated>2015-01-19T17:36:44+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-19T17:36:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=048ffa58468521c043de567f620003457b8b3dbe'/>
<id>048ffa58468521c043de567f620003457b8b3dbe</id>
<content type='text'>
Fixes #235
[ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #235
[ci skip]
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented Submodule.rename()</title>
<updated>2015-01-19T15:57:11+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-19T15:57:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=20863cfe4a1b0c5bea18677470a969073570e41c'/>
<id>20863cfe4a1b0c5bea18677470a969073570e41c</id>
<content type='text'>
A test verifies it's truly working.

Related to #238
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A test verifies it's truly working.

Related to #238
</pre>
</div>
</content>
</entry>
<entry>
<title>Submodule.remove() now seems to work properly, nearly all tests are back.</title>
<updated>2015-01-17T16:19:06+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-17T16:19:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=c15a6e1923a14bc760851913858a3942a4193cdb'/>
<id>c15a6e1923a14bc760851913858a3942a4193cdb</id>
<content type='text'>
This also means that now we seem to be able to properly handle .git files in submodules

Related to #233
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This also means that now we seem to be able to properly handle .git files in submodules

Related to #233
</pre>
</div>
</content>
</entry>
<entry>
<title>Submodule.remove() now deals with .git files correctly.</title>
<updated>2015-01-17T14:53:55+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-17T14:53:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=c7b16ade191bb753ebadb45efe6be7386f67351d'/>
<id>c7b16ade191bb753ebadb45efe6be7386f67351d</id>
<content type='text'>
A simple test verifies this at least.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A simple test verifies this at least.
</pre>
</div>
</content>
</entry>
</feed>
