Skip to content

Commit d562517

Browse files
committed
renamed gitter to cmd since that makes more sense. Fixed up changes doc.
1 parent dafe71a commit d562517

File tree

4 files changed

+4
-192
lines changed

4 files changed

+4
-192
lines changed

CHANGES

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ CHANGES
1010

1111
Git
1212
---
13+
* Renamed module to cmd.
14+
1315
* Removed shell escaping completely.
1416

1517
* Added support for ``stderr``, ``stdin``, and ``with_status``.

lib/git/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from git.commit import Commit
1212
from git.diff import Diff
1313
from git.errors import InvalidGitRepositoryError, NoSuchPathError, GitCommandError
14-
from git.gitter import Git
14+
from git.cmd import Git
1515
from git.head import Head
1616
from git.repo import Repo
1717
from git.stats import Stats

lib/git/gitter.py

-190
This file was deleted.

lib/git/repo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import re
33
from errors import InvalidGitRepositoryError, NoSuchPathError
44
from utils import touch
5-
from gitter import Git
5+
from cmd import Git
66
from head import Head
77
from blob import Blob
88
from tag import Tag

0 commit comments

Comments
 (0)