summaryrefslogtreecommitdiff
path: root/git/refs/__init__.py
blob: 0281121ae32c8ef4406002c072f3da3fd4989a99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

from __future__ import absolute_import
# import all modules in order, fix the names they require
from .symbolic import *
from .reference import *
from .head import *
from .tag import *
from .remote import *

# name fixes
from . import head
head.RemoteReference = RemoteReference
del(head)


from . import symbolic
for item in (HEAD, Head, RemoteReference, TagReference, Reference, SymbolicReference):
    setattr(symbolic, item.__name__, item)
del(symbolic)


from .log import *