diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-20 20:17:25 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-20 20:17:25 +0200 |
| commit | f164627a85ed7b816759871a76db258515b85678 (patch) | |
| tree | 165c730063bf47276655a6859b8a68d3ddfcc944 /lib/git/db.py | |
| parent | b82dbf538ac0d03968a0f5b7e2318891abefafaa (diff) | |
| download | GitPython-f164627a85ed7b816759871a76db258515b85678.tar.gz GitPython-f164627a85ed7b816759871a76db258515b85678.zip | |
db: added pure python git database
repo: now has the option to use the pure python git database implementation, which is currently not used though
Diffstat (limited to 'lib/git/db.py')
| -rw-r--r-- | lib/git/db.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/git/db.py b/lib/git/db.py index 4e860bb6..f3698b76 100644 --- a/lib/git/db.py +++ b/lib/git/db.py @@ -4,9 +4,10 @@ from gitdb.base import ( OStream ) +from gitdb.db import GitDB from gitdb.db import LooseObjectDB -__all__ = ('GitCmdObjectDB', ) +__all__ = ('GitCmdObjectDB', 'GitDB' ) #class GitCmdObjectDB(CompoundDB, ObjectDBW): class GitCmdObjectDB(LooseObjectDB): |
