diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-05-06 15:03:14 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-05-06 15:03:14 +0200 |
commit | acf5e6ea64a2f24117f1d419c208ed1c38c43690 (patch) | |
tree | 75dedc18137297829e84f3a151130a589c3d844b /git/db/cmd/git.py | |
parent | 56da804ff295a05a38dc2cc73755706ea756fc52 (diff) | |
download | gitpython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.tar.gz |
replaced all gitdb strings with git
Diffstat (limited to 'git/db/cmd/git.py')
-rw-r--r-- | git/db/cmd/git.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/git/db/cmd/git.py b/git/db/cmd/git.py index 5f977c6f..6c060f0e 100644 --- a/git/db/cmd/git.py +++ b/git/db/cmd/git.py @@ -1,29 +1,29 @@ -"""Module with our own gitdb implementation - it uses the git command""" +"""Module with our own git implementation - it uses the git command""" from exc import ( GitCommandError, BadObject ) -from gitdb.base import ( +from git.base import ( OInfo, OStream ) -from gitdb.util import ( +from git.util import ( bin_to_hex, hex_to_bin ) -from gitdb.db.py import ( +from git.db.py import ( PureGitDB, PureLooseObjectODB ) from git.util import RemoteProgress -from gitdb.db.py.base import TransportDB -from gitdb.db.interface import FetchInfo as GitdbFetchInfo -from gitdb.db.interface import PushInfo as GitdbPushInfo +from git.db.py.base import TransportDB +from git.db.interface import FetchInfo as GitdbFetchInfo +from git.db.interface import PushInfo as GitdbPushInfo from git.util import join_path -from gitdb.util import join +from git.util import join from refs import ( Reference, |