summaryrefslogtreecommitdiff
path: root/git/db/cmd/complex.py
blob: ad79282630654e1b7fd2ec9ba76c28376020e95b (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