diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2010-11-24 19:48:59 +0100 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2010-11-24 19:48:59 +0100 |
| commit | 3175b5b21194bcc8f4448abe0a03a98d3a4a1360 (patch) | |
| tree | f1a098c4b38ae3b7cf52600e9fc9c357cdd7c353 /refs/__init__.py | |
| parent | fca367548e365f93c58c47dea45507025269f59a (diff) | |
| parent | 3203cd7629345d32806f470a308975076b2b4686 (diff) | |
| download | GitPython-3175b5b21194bcc8f4448abe0a03a98d3a4a1360.tar.gz GitPython-3175b5b21194bcc8f4448abe0a03a98d3a4a1360.zip | |
Merge branch 'reflog'
Diffstat (limited to 'refs/__init__.py')
| -rw-r--r-- | refs/__init__.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/refs/__init__.py b/refs/__init__.py new file mode 100644 index 00000000..fc8ce644 --- /dev/null +++ b/refs/__init__.py @@ -0,0 +1,21 @@ + +# 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 +import head +head.RemoteReference = RemoteReference +del(head) + + +import symbolic +for item in (HEAD, Head, RemoteReference, TagReference, Reference, SymbolicReference): + setattr(symbolic, item.__name__, item) +del(symbolic) + + +from log import * |
