-
Notifications
You must be signed in to change notification settings - Fork 390
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
805 additions
and
378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
*.pyc | ||
*.tmLanguage.cache | ||
*.tmPreferences.cache | ||
.DS_Store | ||
package-metadata.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
from __future__ import absolute_import, unicode_literals, print_function, division | ||
|
||
"""This module collates the Git commands from the submodule | ||
...it's a python 2 / 3 compatibility workaround, mostly. | ||
""" | ||
|
||
try: | ||
# Python 3 | ||
from .git.core import * | ||
|
||
from .git.add import * | ||
from .git.annotate import * | ||
from .git.commit import * | ||
from .git.diff import * | ||
from .git.flow import * | ||
from .git.history import * | ||
from .git.repo import * | ||
from .git.stash import * | ||
from .git.status import * | ||
from .git.statusbar import * | ||
except (ImportError, ValueError): | ||
# Python 2 | ||
from git.core import * | ||
|
||
from git.add import * | ||
from git.annotate import * | ||
from git.commit import * | ||
from git.diff import * | ||
from git.flow import * | ||
from git.history import * | ||
from git.repo import * | ||
from git.stash import * | ||
from git.status import * | ||
from git.statusbar import * |
Oops, something went wrong.