<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitpython.git/test/git, branch 0.1.6</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>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 Commit.stats retrieval for parentless commits in bare repos</title>
<updated>2008-12-17T01:53:04+00:00</updated>
<author>
<name>Michael Trier</name>
<email>mtrier@gmail.com</email>
</author>
<published>2008-12-17T00:44:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=e4582f805156095604fe07e71195cd9aa43d7a34'/>
<id>e4582f805156095604fe07e71195cd9aa43d7a34</id>
<content type='text'>
(cherry picked from commit 88852ed7bcde4f4b18c1ae8b6fba7f3fab8e9bf5)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit 88852ed7bcde4f4b18c1ae8b6fba7f3fab8e9bf5)
</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>Added in new properties Diff.renamed, Diff.rename_from, and Diff.rename_to</title>
<updated>2008-12-16T01:47:19+00:00</updated>
<author>
<name>Michael Trier</name>
<email>mtrier@gmail.com</email>
</author>
<published>2008-12-16T01:47:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=6ba8b8b91907bd087dfe201eb0d5dae2feb54881'/>
<id>6ba8b8b91907bd087dfe201eb0d5dae2feb54881</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make message the full message and add a summary property</title>
<updated>2008-12-15T19:18:30+00:00</updated>
<author>
<name>Paul Sowden</name>
<email>paul@idontsmoke.co.uk</email>
</author>
<published>2008-11-24T04:49:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=6c486b2e699082763075a169c56a4b01f99fc4b9'/>
<id>6c486b2e699082763075a169c56a4b01f99fc4b9</id>
<content type='text'>
Adds a summary property to the Commit object which returns just the first line of the commit message and makes the message property contain the entire commit message (previously the message property only contained the first line of the commit message).  This breaks backwards compatibility a little in that the message property now contains a different value but previously there was no way to access the entire commit message from the Commit object and this is in keeping with git vocabulary, where message generally refers to the entire commit message.
(cherry picked from commit 9d2962d8306c894d4cca55bab551677b92d96352)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds a summary property to the Commit object which returns just the first line of the commit message and makes the message property contain the entire commit message (previously the message property only contained the first line of the commit message).  This breaks backwards compatibility a little in that the message property now contains a different value but previously there was no way to access the entire commit message from the Commit object and this is in keeping with git vocabulary, where message generally refers to the entire commit message.
(cherry picked from commit 9d2962d8306c894d4cca55bab551677b92d96352)
</pre>
</div>
</content>
</entry>
<entry>
<title>implement a far far faster diff parser</title>
<updated>2008-12-15T19:12:23+00:00</updated>
<author>
<name>Paul Sowden</name>
<email>paul@idontsmoke.co.uk</email>
</author>
<published>2008-11-20T08:09:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=753e908dcea03cf9962cf45d3965cf93b0d30d94'/>
<id>753e908dcea03cf9962cf45d3965cf93b0d30d94</id>
<content type='text'>
The old diff parser in list_from_string took a large amount of time to parse long diffs, on one of my repositories it took over 3 minutes to parse the initial commit.  The new parser uses a single regexp to match the header of a diff, and iterates over the each individual diff by splitting the entire string by the diff seperator, attempting to match the header for each individual diff.  With the new parser parsing the same repository is almost instant, woohoo!
(cherry picked from commit 5b6b27f153bdc30380bea12a528ef483571dd57a)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The old diff parser in list_from_string took a large amount of time to parse long diffs, on one of my repositories it took over 3 minutes to parse the initial commit.  The new parser uses a single regexp to match the header of a diff, and iterates over the each individual diff by splitting the entire string by the diff seperator, attempting to match the header for each individual diff.  With the new parser parsing the same repository is almost instant, woohoo!
(cherry picked from commit 5b6b27f153bdc30380bea12a528ef483571dd57a)
</pre>
</div>
</content>
</entry>
<entry>
<title>add a path parameter to most commit methods</title>
<updated>2008-12-15T19:12:04+00:00</updated>
<author>
<name>Paul Sowden</name>
<email>paul@idontsmoke.co.uk</email>
</author>
<published>2008-11-20T07:27:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=9e14356d12226cb140b0e070bd079468b4ab599b'/>
<id>9e14356d12226cb140b0e070bd079468b4ab599b</id>
<content type='text'>
The path parameter allows you to specify a path to constrain queries by.  This changes potentially breaks backwards compatibility for the Repo.commits and Repo.commits_since methods as it moves the positional arguments.
(cherry picked from commit cc8a20e78da4864060bd0c9279633009bc10d871)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The path parameter allows you to specify a path to constrain queries by.  This changes potentially breaks backwards compatibility for the Repo.commits and Repo.commits_since methods as it moves the positional arguments.
(cherry picked from commit cc8a20e78da4864060bd0c9279633009bc10d871)
</pre>
</div>
</content>
</entry>
<entry>
<title>remove ambiguity between paths and treeishs</title>
<updated>2008-12-15T19:06:03+00:00</updated>
<author>
<name>Paul Sowden</name>
<email>paul@idontsmoke.co.uk</email>
</author>
<published>2008-11-20T07:03:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=5bb812243dd1815651281a54c8191fc8e2bc2d82'/>
<id>5bb812243dd1815651281a54c8191fc8e2bc2d82</id>
<content type='text'>
When calling commands that accept treeish and path arguments and there is a path with the same name as a treeish git cowardly refuses to pick one and asks for the command to use the unambiguous syntax where '--' seperates the treeish from the paths.  Add '--' to the git commands to indicate that the argument is a treeish and not a path.
(cherry picked from commit a9a57fa93a2b121ab9b17fcd6062b9a9c9740883)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When calling commands that accept treeish and path arguments and there is a path with the same name as a treeish git cowardly refuses to pick one and asks for the command to use the unambiguous syntax where '--' seperates the treeish from the paths.  Add '--' to the git commands to indicate that the argument is a treeish and not a path.
(cherry picked from commit a9a57fa93a2b121ab9b17fcd6062b9a9c9740883)
</pre>
</div>
</content>
</entry>
<entry>
<title>Corrected failing tests because the Repo mocking was not returning None.</title>
<updated>2008-12-15T18:44:12+00:00</updated>
<author>
<name>Michael Trier</name>
<email>mtrier@gmail.com</email>
</author>
<published>2008-12-15T18:44:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/gitpython.git/commit/?id=1083748b828dfca6a72014434850da0f2a0579ab'/>
<id>1083748b828dfca6a72014434850da0f2a0579ab</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>
</feed>
