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
Copy file name to clipboardexpand all lines: doc/source/intro.rst
+23-17
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ Requirements
19
19
* `GitDB`_ - a pure python git database implementation
20
20
21
21
* `async`_ - asynchronous task scheduling
22
-
22
+
23
23
* `Python Nose`_ - used for running the tests
24
24
* `Mock by Michael Foord`_ used for tests. Requires version 0.5
25
25
@@ -36,9 +36,9 @@ Installing GitPython is easily done using
36
36
`setuptools`_. Assuming it is
37
37
installed, just run the following from the command-line:
38
38
39
-
.. sourcecode:: none
39
+
.. sourcecode:: console
40
40
41
-
# easy_install GitPython
41
+
$ easy_install GitPython
42
42
43
43
This command will download the latest version of GitPython from the
44
44
`Python Package Index <http://pypi.python.org/pypi/GitPython>`_ and install it
@@ -54,10 +54,10 @@ here:
54
54
Alternatively, you can install from the distribution using the ``setup.py``
55
55
script:
56
56
57
-
.. sourcecode:: none
57
+
.. sourcecode:: console
58
+
59
+
$ python setup.py install
58
60
59
-
# python setup.py install
60
-
61
61
.. note:: In this case, you have to manually install `GitDB`_ and `async`_ as well. It would be recommended to use the :ref:`git source repository <source-code-label>` in that case.
62
62
63
63
Getting Started
@@ -80,21 +80,27 @@ Source Code
80
80
81
81
GitPython's git repo is available on GitHub, which can be browsed at:
0 commit comments