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

from git.db.compat import RepoCompatibilityInterface
from base import *


__all__ = ['CmdPartialGitDB']


class CmdPartialGitDB( 	GitCommandMixin, CmdObjectDBRMixin, CmdTransportMixin, 
						CmdHighLevelRepository ):
	"""Utility repository which only partially implements all required methods.
	It cannot be reliably used alone, but is provided to allow mixing it with other 
	implementations"""
	pass