Commit 7c35350e5bc4fe113330818ca6784ff368c5ffef
- Date: Thu May 08 04:40:34 +0000 2008
- Committer: Michael Trier (mtrier@gmail.com)
- Author: Michael Trier (mtrier@gmail.com)
- Commit SHA1: 7c35350e5bc4fe113330818ca6784ff368c5ffef
- Tree SHA1: 1d8cf9c80fd2d98be2ae84c7e6ee1284eaf43b8a
ugh, the editing never ends.
Commit diff
| |   |
| 32 | 32 | |
| 33 | 33 | GitPython's git repo is available on Gitorious, which can be browsed at: |
| 34 | 34 | |
| 35 | | http://gitorious.org/projects/git-python |
| 35 | http://gitorious.org/projects/git-python/ |
| 36 | 36 | |
| 37 | 37 | and cloned from: |
| 38 | 38 | |
| 39 | | git://gitorious.org/projects/git-python.git |
| 39 | git://gitorious.org/git-python/mainline.git |
| 40 | 40 | |
| 41 | 41 | USAGE |
| 42 | 42 | ===== |
| … | … | |
| 206 | 206 | >>> repo.blob("b19574431a073333ea09346eafd64e7b1908ef49") |
| 207 | 207 | <GitPython.Blob "b19574431a073333ea09346eafd64e7b1908ef49"> |
| 208 | 208 | |
| 209 | What Else? |
| 210 | ********** |
| 211 | |
| 212 | There is more stuff in there, like the ability to tar or gzip repos, stats, blame, and probably a few other things. Additionally calls to the git instance are handled through a ``method_missing`` construct, which makes available any git commands directly, with a nice conversion of Python dicts to command line parameters. |
| 213 | |
| 214 | Check the unit tests, they're pretty exhaustive. |
| 215 | |
| 209 | 216 | LICENSE |
| 210 | 217 | ======= |
| 211 | 218 | |
| toggle raw diff |
--- a/README
+++ b/README
@@ -32,11 +32,11 @@ SOURCE
GitPython's git repo is available on Gitorious, which can be browsed at:
-http://gitorious.org/projects/git-python
+http://gitorious.org/projects/git-python/
and cloned from:
-git://gitorious.org/projects/git-python.git
+git://gitorious.org/git-python/mainline.git
USAGE
=====
@@ -206,6 +206,13 @@ You can also get a blob directly from the repo if you know its name.
>>> repo.blob("b19574431a073333ea09346eafd64e7b1908ef49")
<GitPython.Blob "b19574431a073333ea09346eafd64e7b1908ef49">
+What Else?
+**********
+
+There is more stuff in there, like the ability to tar or gzip repos, stats, blame, and probably a few other things. Additionally calls to the git instance are handled through a ``method_missing`` construct, which makes available any git commands directly, with a nice conversion of Python dicts to command line parameters.
+
+Check the unit tests, they're pretty exhaustive.
+
LICENSE
=======
|