summaryrefslogtreecommitdiff
path: root/git/db/cmd/complex.py
blob: 9c26a8fad5f3ba8e2dd96985ec073b2dd3ff52f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""Module with our own git implementation - it uses the git command"""

from git.db.compat import RepoCompatInterface
from git.db.py.complex import PureGitDB

from base import *


__all__ = ['GitCmdDB', 'CmdCompatibilityGitDB']


class CmdGitDB(	GitCommandMixin, CmdObjectDBRMixin, CmdTransportMixin, 
				CmdHighLevelRepository, PureGitDB):
	pass

class CmdCompatibilityGitDB(CmdGitDB, RepoCompatInterface):
	"""Command git database with the compatabilty interface added for 0.3x code"""