<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitpython.git/test/git/test_head.py, branch 3.0.1</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>Added SymbolicReference and HEAD type to better represent these special types of references and allow special handling</title>
<updated>2009-10-22T21:20:16+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2009-10-22T21:20:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=58e2157ad3aa9d75ef4abb90eb2d1f01fba0ba2b'/>
<id>58e2157ad3aa9d75ef4abb90eb2d1f01fba0ba2b</id>
<content type='text'>
Head.reset now is an instance method of HEAD type
Concatenated all reference specific tests into test_refs
started to fix tests breaking now because of changed interface
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Head.reset now is an instance method of HEAD type
Concatenated all reference specific tests into test_refs
started to fix tests breaking now because of changed interface
</pre>
</div>
</content>
</entry>
<entry>
<title>Adjusted all remaining test suites to use the new TestBase class where appropriate</title>
<updated>2009-10-22T14:20:24+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2009-10-22T14:20:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=b197b2dbb527de9856e6e808339ab0ceaf0a512d'/>
<id>b197b2dbb527de9856e6e808339ab0ceaf0a512d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed issue in Ref.name implementation which would not handle components properly</title>
<updated>2009-10-11T18:21:22+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2009-10-11T18:21:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=9a119924bd314934158515a1a5f5877be63f6f91'/>
<id>9a119924bd314934158515a1a5f5877be63f6f91</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>converted all spaces to tabs ( 4 spaces = 1 tab ) just to allow me and my editor to work with the files properly. Can convert it back for releaes</title>
<updated>2009-10-11T14:49:05+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2009-10-11T14:49:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=9374a916588d9fe7169937ba262c86ad710cfa74'/>
<id>9374a916588d9fe7169937ba262c86ad710cfa74</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Lots of spring cleaning and added in Sphinx documentation.</title>
<updated>2009-01-24T20:40:27+00:00</updated>
<author>
<name>Michael Trier</name>
<email>mtrier@gmail.com</email>
</author>
<published>2009-01-24T20:40:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=c76852d0bff115720af3f27acdb084c59361e5f6'/>
<id>c76852d0bff115720af3f27acdb084c59361e5f6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed a bug with branch names omitting path components.</title>
<updated>2008-12-16T14:55:00+00:00</updated>
<author>
<name>Michael Trier</name>
<email>mtrier@gmail.com</email>
</author>
<published>2008-12-16T14:55:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=b65df78a10c3bcc40d18f3e926bb5a49821acc31'/>
<id>b65df78a10c3bcc40d18f3e926bb5a49821acc31</id>
<content type='text'>
Git allows branches to be named and organized using path components, e.g using
a branch called "refactoring/feature1", which gets stored under
refs/heads/refactoring/feature1. The previous code omitted everything but the
last path component giving the name "feature1" instead of
"refactoring/feature1" for the branch. This changeset fixes that.
(cherry picked from commit dc4738bc53e580754e47037e26c7eec3047aeb69)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Git allows branches to be named and organized using path components, e.g using
a branch called "refactoring/feature1", which gets stored under
refs/heads/refactoring/feature1. The previous code omitted everything but the
last path component giving the name "feature1" instead of
"refactoring/feature1" for the branch. This changeset fixes that.
(cherry picked from commit dc4738bc53e580754e47037e26c7eec3047aeb69)
</pre>
</div>
</content>
</entry>
<entry>
<title>Get compatible with mock0.4 (to some extend ;)). Just that Michael</title>
<updated>2008-12-15T17:09:45+00:00</updated>
<author>
<name>Florian Apolloner</name>
<email>florian@apolloner.eu</email>
</author>
<published>2008-10-31T21:46:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=dc1fcf372878240e0a1af20641d361f14aea7252'/>
<id>dc1fcf372878240e0a1af20641d361f14aea7252</id>
<content type='text'>
doesn't need to do the same boring replacing I did.
(cherry picked from commit 10c62aa69193a8bc7b46ca24c2ad1d5008489665)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
doesn't need to do the same boring replacing I did.
(cherry picked from commit 10c62aa69193a8bc7b46ca24c2ad1d5008489665)
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace GitPython with git in repr() outputs.</title>
<updated>2008-09-17T06:08:09+00:00</updated>
<author>
<name>Steve Frécinaux</name>
<email>code@istique.net</email>
</author>
<published>2008-09-16T06:08:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=b00f3689aa19938c10576580fbfc9243d9f3866c'/>
<id>b00f3689aa19938c10576580fbfc9243d9f3866c</id>
<content type='text'>
The imported module is called git (as in "import git"), so it's less
confusing to do so than to call everything GitPython.something.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The imported module is called git (as in "import git"), so it's less
confusing to do so than to call everything GitPython.something.
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed method_missing since it was only used in one place.</title>
<updated>2008-07-17T21:22:01+00:00</updated>
<author>
<name>Michael Trier</name>
<email>mtrier@gmail.com</email>
</author>
<published>2008-07-17T21:22:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=c04c60f12d3684ecf961509d1b8db895e6f9aac0'/>
<id>c04c60f12d3684ecf961509d1b8db895e6f9aac0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added license information to all files.</title>
<updated>2008-07-17T02:18:21+00:00</updated>
<author>
<name>Michael Trier</name>
<email>mtrier@gmail.com</email>
</author>
<published>2008-07-17T02:18:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=bfdf98cadedfa6042117cd7a83952ca2f465d26f'/>
<id>bfdf98cadedfa6042117cd7a83952ca2f465d26f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
