File size: 1,799 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
GitDB
=====
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.
Installation
============
.. image:: https://img.shields.io/pypi/v/gitdb.svg
:target: https://pypi.python.org/pypi/gitdb/
:alt: Latest Version
.. image:: https://img.shields.io/pypi/pyversions/gitdb.svg
:target: https://pypi.python.org/pypi/gitdb/
:alt: Supported Python versions
.. image:: https://readthedocs.org/projects/gitdb/badge/?version=latest
:target: https://readthedocs.org/projects/gitdb/?badge=latest
:alt: Documentation Status
From `PyPI <https://pypi.python.org/pypi/gitdb>`_
pip install gitdb
SPEEDUPS
========
If you want to go up to 20% faster, you can install gitdb-speedups with:
pip install gitdb-speedups
REQUIREMENTS
============
* pytest - for running the tests
SOURCE
======
The source is available in a git repository at gitorious and github:
https://github.com/gitpython-developers/gitdb
Once the clone is complete, please be sure to initialize the submodules using
cd gitdb
git submodule update --init
Run the tests with
pytest
DEVELOPMENT
===========
.. image:: https://github.com/gitpython-developers/gitdb/workflows/Python%20package/badge.svg
:target: https://github.com/gitpython-developers/gitdb/actions
The library is considered mature, and not under active development. It's primary (known) use is in git-python.
INFRASTRUCTURE
==============
* Mailing List
* http://groups.google.com/group/git-python
* Issue Tracker
* https://github.com/gitpython-developers/gitdb/issues
LICENSE
=======
New BSD License
|