summaryrefslogtreecommitdiff
path: root/lib/git/__init__.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-19 21:32:34 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-19 21:32:34 +0200
commit985093bae160419782b3d3cb9151e2e58625fd52 (patch)
tree2f19b97289d9d0af2eeea894dcc1f51e627261cf /lib/git/__init__.py
parent8f42db54c6b2cfbd7d68e6d34ac2ed70578402f7 (diff)
parent53d26977f1aff8289f13c02ee672349d78eeb2f0 (diff)
downloadgitpython-985093bae160419782b3d3cb9151e2e58625fd52.tar.gz
Merge branch 'remotes' into improvements
* remotes: remote: added tests for creation and removal, finishing the remote interface remote: base tests succeed now config: fixed serious issues that would cause it to see initial tabs as continuation lines - this leads to very incorrect results when parsing git config files. Now the complete reading is overridden to make it work as there was no other way Added configuration access including tests to remote Added remote module and test cases - about to implement remote option handling added initial frame for remote handling- remotes are somewhat related to either parsing the command output or to reading the repo configuration which would be faster
Diffstat (limited to 'lib/git/__init__.py')
-rw-r--r--lib/git/__init__.py1
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()