-
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
13 changed files
with
53 additions
and
14 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,17 +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. | ||
""" | ||
|
||
from git.core import * | ||
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 * | ||
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 * |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
from __future__ import absolute_import, unicode_literals, print_function, division | ||
|
||
import os | ||
import re | ||
|
||
|
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
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
from __future__ import absolute_import, unicode_literals, print_function, division | ||
|
||
import os | ||
|
||
import sublime | ||
|
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
from __future__ import absolute_import, unicode_literals, print_function, division | ||
|
||
import os | ||
import re | ||
|
||
|
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,3 +1,5 @@ | ||
from __future__ import absolute_import, unicode_literals, print_function, division | ||
|
||
import re | ||
|
||
import sublime | ||
|