view rhodecode/lib/vcs/backends/git/__init__.py @ 2761:e64c64e2b8aa beta

re implemented affected_files function for git using dulwich it speeds up things like 70%
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 30 Aug 2012 00:57:51 +0200
parents 324ac367a4da
children
line wrap: on
line source

from .repository import GitRepository
from .changeset import GitChangeset
from .inmemory import GitInMemoryChangeset
from .workdir import GitWorkdir


__all__ = [
    'GitRepository', 'GitChangeset', 'GitInMemoryChangeset', 'GitWorkdir',
]