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: README.rst
+19-14Lines changed: 19 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,7 @@
1
1
GitDB
2
2
=====
3
3
4
-
GitDB allows you to access bare git repositories for reading and writing. It
5
-
aims at allowing full access to loose objects as well as packs with performance
6
-
and scalability in mind. It operates exclusively on streams, allowing to operate
7
-
on large objects with a small memory footprint.
4
+
GitDB allows you to access bare git repositories for reading and writing. It aims at allowing full access to loose objects as well as packs with performance and scalability in mind. It operates exclusively on streams, allowing to handle large objects with a small memory footprint.
8
5
9
6
Installation
10
7
============
@@ -23,13 +20,13 @@ From `PyPI <https://pypi.python.org/pypi/gitdb>`_
23
20
REQUIREMENTS
24
21
============
25
22
26
-
* Python Nose - for running the tests
23
+
* Python Nose - for running the tests
27
24
28
25
SOURCE
29
26
======
30
27
The source is available in a git repository at gitorious and github:
31
28
32
-
git://github.com/gitpython-developers/gitdb.git
29
+
https://github.com/gitpython-developers/gitdb
33
30
34
31
Once the clone is complete, please be sure to initialize the submodules using
Copy file name to clipboardExpand all lines: doc/source/intro.rst
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,9 @@ Interfaces are used to describe the API, making it easy to provide alternate imp
11
11
================
12
12
Installing GitDB
13
13
================
14
-
Its easiest to install gitdb using the *easy_install* program, which is part of the `setuptools`_::
14
+
Its easiest to install gitdb using the *pip* program::
15
15
16
-
$ easy_install gitdb
16
+
$ pip install gitdb
17
17
18
18
As the command will install gitdb in your respective python distribution, you will most likely need root permissions to authorize the required changes.
19
19
@@ -31,10 +31,8 @@ Source Repository
31
31
=================
32
32
The latest source can be cloned using git from github:
0 commit comments