Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d562517

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

File tree

4 files changed

+4
-192
lines changed
Filter options

4 files changed

+4
-192
lines changed

‎CHANGES

Copy file name to clipboardExpand all lines: CHANGES
+2Lines changed: 2 additions & 0 deletions
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

Copy file name to clipboardExpand all lines: lib/git/__init__.py
+1-1Lines changed: 1 addition & 1 deletion
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

Copy file name to clipboardExpand all lines: lib/git/gitter.py
-190Lines changed: 0 additions & 190 deletions
This file was deleted.

‎lib/git/repo.py

Copy file name to clipboardExpand all lines: lib/git/repo.py
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.