summaryrefslogtreecommitdiff
path: root/lib/git_python/head.py
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2008-05-20 15:56:38 +0200
committerFlorian Apolloner <florian@apolloner.eu>2008-05-20 15:56:38 +0200
commit35ddb45b41b3de2d4f783608ad8d8752f6557997 (patch)
treeaa5cc1acfcf65a4c7889846c227e85386090f719 /lib/git_python/head.py
parent1dc09f0ece61ef2bd629e8bfe532aa24f4f8e0c2 (diff)
downloadgitpython-35ddb45b41b3de2d4f783608ad8d8752f6557997.tar.gz
removed unneeded spaces
Diffstat (limited to 'lib/git_python/head.py')
-rw-r--r--lib/git_python/head.py44
1 files changed, 22 insertions, 22 deletions
diff --git a/lib/git_python/head.py b/lib/git_python/head.py
index cb432bd9..58191fd8 100644
--- a/lib/git_python/head.py
+++ b/lib/git_python/head.py
@@ -4,49 +4,49 @@ class Head(object):
"""
A Head is a named reference to a Commit. Every Head instance contains a name
and a Commit object.
-
+
Examples::
-
+
>>> repo = Repo("/path/to/repo")
>>> head = repo.heads[0]
-
+
>>> head.name
'master'
-
+
>>> head.commit
<GitPython.Commit "1c09f116cbc2cb4100fb6935bb162daa4723f455">
-
+
>>> head.commit.id
'1c09f116cbc2cb4100fb6935bb162daa4723f455'
"""
-
+
def __init__(self, name, commit):
"""
Instantiate a new Head
-
+
`name`
is the name of the head
-
+
`commit`
is the Commit that the head points to
-
+
Returns
GitPython.Head
"""
self.name = name
self.commit = commit
-
+
@classmethod
def find_all(cls, repo, **kwargs):
"""
Find all Heads
-
+
`repo`
is the Repo
-
+
`kwargs`
is a dict of options
-
+
Returns
GitPython.Head[]
"""
@@ -54,15 +54,15 @@ class Head(object):
options = {'sort': "committerdate",
'format': "%(refname)%00%(objectname)"}
options.update(kwargs)
-
- output = repo.git.for_each_ref("refs/heads", **options)
+
+ output = repo.git.for_each_ref("refs/heads", **options)
return cls.list_from_string(repo, output)
@classmethod
def list_from_string(cls, repo, text):
"""
Parse out head information into an array of baked head objects
-
+
``repo``
is the Repo
``text``
@@ -72,20 +72,20 @@ class Head(object):
GitPython.Head[]
"""
heads = []
-
+
for line in text.splitlines():
heads.append(cls.from_string(repo, line))
-
+
return heads
@classmethod
def from_string(cls, repo, line):
"""
Create a new Head instance from the given string.
-
+
``repo``
is the Repo
-
+
``line``
is the formatted head information
@@ -93,7 +93,7 @@ class Head(object):
name: [a-zA-Z_/]+
<null byte>
id: [0-9A-Fa-f]{40}
-
+
Returns
GitPython.Head
"""
@@ -102,6 +102,6 @@ class Head(object):
name = full_name.split("/")[-1]
c = commit.Commit(repo, **{'id': ids})
return Head(name, c)
-
+
def __repr__(self):
return '<GitPython.Head "%s">' % self.name