diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-22 00:05:37 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-22 00:05:37 +0200 |
commit | 69dd8750be1fbf55010a738dc1ced4655e727f23 (patch) | |
tree | 1d49d5ff0218a358d63ae1cab93c56731cc5ea46 /lib/git/__init__.py | |
parent | 1044116d25f0311033e0951d2ab30579bba4b051 (diff) | |
download | gitpython-69dd8750be1fbf55010a738dc1ced4655e727f23.tar.gz |
index.write_tree: initial version implemented, although its not yet working correctly, a test to explicitly compare the git version with the python implementation is still missing
Tree and Index internally use 20 byte shas, converting them only as needed to reduce memory footprint and processing time
objects: started own 'fun' module containing the most important tree functions, more are likely to be added soon
Diffstat (limited to 'lib/git/__init__.py')
-rw-r--r-- | lib/git/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/__init__.py b/lib/git/__init__.py index 7a0d000d..7860a3c1 100644 --- a/lib/git/__init__.py +++ b/lib/git/__init__.py @@ -28,7 +28,7 @@ from git.config import GitConfigParser from git.objects import * from git.refs import * from git.diff import * -from git.errors import InvalidGitRepositoryError, NoSuchPathError, GitCommandError +from git.errors import * from git.cmd import Git from git.repo import Repo from git.remote import * |