diff options
Diffstat (limited to 'lib/git/head.py')
-rw-r--r-- | lib/git/head.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/git/head.py b/lib/git/head.py index f4e94637..42dfd735 100644 --- a/lib/git/head.py +++ b/lib/git/head.py @@ -27,20 +27,6 @@ class Head(base.Ref): '1c09f116cbc2cb4100fb6935bb162daa4723f455' """ - def __init__(self, path, commit): - """ - Initialize a newly instanced Head - - ``path`` - is the path to the head ref, relative to the .git directory, i.e. - refs/heads/master - - `commit` - is the Commit object that the head points to - """ - super(Head, self).__init__(name, commit) - - @property def commit(self): """ |