diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-05-05 15:25:11 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-05-05 15:25:11 +0200 |
commit | 9fc7b9a068189cc0d249d0870dfb0112ab5dec92 (patch) | |
tree | 3e185c8d5028abd4dda32c14744a771f4da088e0 /git/db.py | |
parent | 3fe1a7f87d511758adf2e56803cb3610b80c5f08 (diff) | |
download | gitpython-9fc7b9a068189cc0d249d0870dfb0112ab5dec92.tar.gz |
Made most primal imports work, but stopped here as there are many more changes when doing the merge
Diffstat (limited to 'git/db.py')
-rw-r--r-- | git/db.py | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -13,14 +13,14 @@ from gitdb.util import ( bin_to_hex, hex_to_bin ) -from gitdb.db import ( - GitDB, - LooseObjectDB +from gitdb.db.py import ( + PureGitDB, + PureLooseObjectODB ) from git.util import RemoteProgress -from gitdb.db.base import TransportDBMixin -from gitdb.db.base import FetchInfo as GitdbFetchInfo -from gitdb.db.base import PushInfo as GitdbPushInfo +from gitdb.db.py.base import TransportDB +from gitdb.db.interface import FetchInfo as GitdbFetchInfo +from gitdb.db.interface import PushInfo as GitdbPushInfo from git.util import join_path from gitdb.util import join @@ -36,7 +36,7 @@ import re import sys -__all__ = ('GitCmdObjectDB', 'GitDB', 'RemoteProgress' ) +__all__ = ('GitCmdObjectDB', 'PureGitDB', 'RemoteProgress' ) class PushInfo(GitdbPushInfo): @@ -269,7 +269,7 @@ class FetchInfo(GitdbFetchInfo): return cls(remote_local_ref, flags, note, old_commit_binsha) -class GitCmdObjectDB(LooseObjectDB, TransportDBMixin): +class GitCmdObjectDB(PureLooseObjectODB, TransportDB): """A database representing the default git object store, which includes loose objects, pack files and an alternates file |