diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-19 21:31:55 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-19 21:31:55 +0200 |
commit | 53d26977f1aff8289f13c02ee672349d78eeb2f0 (patch) | |
tree | 2f19b97289d9d0af2eeea894dcc1f51e627261cf /lib/git/__init__.py | |
parent | cbf957a36f5ed47c4387ee8069c56b16d1b4f558 (diff) | |
download | gitpython-53d26977f1aff8289f13c02ee672349d78eeb2f0.tar.gz |
remote: added tests for creation and removal, finishing the remote interface
Diffstat (limited to 'lib/git/__init__.py')
-rw-r--r-- | lib/git/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/git/__init__.py b/lib/git/__init__.py index 041d69f7..45364b88 100644 --- a/lib/git/__init__.py +++ b/lib/git/__init__.py @@ -20,6 +20,7 @@ from git.repo import Repo from git.stats import Stats from git.utils import dashify from git.utils import touch +from git.remote import Remote __all__ = [ name for name, obj in locals().items() |