aboutsummaryrefslogtreecommitdiff
path: root/git/refs/__init__.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2011-05-05 19:43:22 +0200
committerSebastian Thiel <byronimo@gmail.com>2011-05-05 19:43:22 +0200
commit4177eefd7bdaea96a529b00ba9cf751924ede202 (patch)
tree958614c21bd97267e0d06f71bb18d4215ddd87b5 /git/refs/__init__.py
parentf54546a9b857ae728033482f3c5c18c9ff3393c3 (diff)
downloadGitPython-4177eefd7bdaea96a529b00ba9cf751924ede202.tar.gz
GitPython-4177eefd7bdaea96a529b00ba9cf751924ede202.zip
Added all code from gitdb to gitpython. Next is to make it generally work. Then the tests will need some work
Diffstat (limited to 'git/refs/__init__.py')
-rw-r--r--git/refs/__init__.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/git/refs/__init__.py b/git/refs/__init__.py
index 2130a087..35b69fca 100644
--- a/git/refs/__init__.py
+++ b/git/refs/__init__.py
@@ -2,14 +2,15 @@
# import all modules in order, fix the names they require
from symbolic import *
from reference import *
+from headref import *
from head import *
from tag import *
from remote import *
# name fixes
-import head
-head.Head.RemoteReferenceCls = RemoteReference
-del(head)
+import headref
+headref.Head.RemoteReferenceCls = RemoteReference
+del(headref)
import symbolic