blob: 404cea120c3e485c1be5be7d5221cc9abd05392f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import inspect
from actor import Actor
from blob import Blob
from commit import Commit
from diff import Diff
from errors import InvalidGitRepositoryError, NoSuchPathError
from git import Git
from head import Head
from repo import Repo
from stats import Stats
from tag import Tag
from tree import Tree
from utils import shell_escape, dashify, touch
__all__ = [ name for name, obj in locals().items()
if not (name.startswith('_') or inspect.ismodule(obj)) ]
__version__ = 'svn'
|