You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GitPython is a python library used to interact with git repositories, high-level like git-porcelain, or low-level like git-plumbing.
6
6
7
7
It provides abstractions of git objects for easy access of repository data, and additionally allows you to access the git repository more directly using either a pure python implementation, or the faster, but more resource intensive git command implementation.
8
8
9
9
The object database implementation is optimized for handling large quantities of objects and large datasets, which is achieved by using low-level structures and data streaming.
10
10
11
-
REQUIREMENTS
12
-
============
11
+
### REQUIREMENTS
13
12
14
13
* Git ( tested with 1.8.3.4 )
15
14
* Python Nose - used for running the tests
16
-
* Tested with nose 1.3.0
15
+
- Tested with nose 1.3.0
17
16
* Mock by Michael Foord used for tests
18
-
* Tested with 1.0.1
17
+
- Tested with 1.0.1
18
+
19
+
### INSTALL
19
20
20
-
INSTALL
21
-
=======
22
21
If you have downloaded the source code:
23
22
24
23
python setup.py install
25
-
24
+
26
25
or if you want to obtain a copy more easily:
27
26
28
27
pip install gitpython
@@ -31,8 +30,8 @@ A distribution package can be obtained for manual installation at:
31
30
32
31
http://pypi.python.org/pypi/GitPython
33
32
34
-
SOURCE
35
-
======
33
+
### SOURCE
34
+
36
35
37
36
GitPython's git repo is available on GitHub, which can be browsed at:
0 commit comments