| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,3 +1,4 @@ | |||
| 1 | 1 | Michael Trier <mtrier _at_ gmail.com> | |
| 2 | 2 | Alan Briolat | |
| 3 | 3 | Florian Apolloner <florian _at_ apolloner.eu> | |
| 4 | + David Aguilar <davvid _at_ gmail.com> | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,6 +2,15 @@ | |||
| 2 | 2 | CHANGES | |
| 3 | 3 | ======= | |
| 4 | 4 | ||
| 5 | + 0.1.3 | ||
| 6 | + ===== | ||
| 7 | + | ||
| 8 | + Git | ||
| 9 | + --- | ||
| 10 | + * Removed shell escaping completely | ||
| 11 | + * Added support for stderr and stdin | ||
| 12 | + * Added new | ||
| 13 | + | ||
| 5 | 14 | 0.1.2 | |
| 6 | 15 | ===== | |
| 7 | 16 | Corrected problem with Tree.__div__ not working with zero length files. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -52,7 +52,7 @@ Initialize a Repo object | |||
| 52 | 52 | ||
| 53 | 53 | The first step is to create a ``Repo`` object to represent your repository. | |
| 54 | 54 | ||
| 55 | - >>> from git_python import * | ||
| 55 | + >>> from git import * | ||
| 56 | 56 | >>> repo = Repo("/Users/mtrier/Development/git-python") | |
| 57 | 57 | ||
| 58 | 58 | In the above example, the directory ``/Users/mtrier/Development/git-python`` | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1 +1 @@ | |||
| 1 | - 0.1.2 | ||
| 1 | + 0.1.3 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,24 @@ | |||
| 1 | + import os | ||
| 2 | + import inspect | ||
| 3 | + | ||
| 4 | + # grab the version information | ||
| 5 | + v = open(os.path.join(os.path.dirname(__file__), '..', '..', 'VERSION')) | ||
| 6 | + __version__ = v.readline().strip() | ||
| 7 | + v.close() | ||
| 8 | + | ||
| 9 | + from git.actor import Actor | ||
| 10 | + from git.blob import Blob | ||
| 11 | + from git.commit import Commit | ||
| 12 | + from git.diff import Diff | ||
| 13 | + from git.errors import InvalidGitRepositoryError, NoSuchPathError, GitCommandError | ||
| 14 | + from git.gitter import Git | ||
| 15 | + from git.head import Head | ||
| 16 | + from git.repo import Repo | ||
| 17 | + from git.stats import Stats | ||
| 18 | + from git.tag import Tag | ||
| 19 | + from git.tree import Tree | ||
| 20 | + from git.utils import dashify | ||
| 21 | + from git.utils import touch | ||
| 22 | + | ||
| 23 | + __all__ = [ name for name, obj in locals().items() | ||
| 24 | + if not (name.startswith('_') or inspect.ismodule(obj)) ] | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments