Go to file
J. David Ibáñez b050de2b26 Make TreeEntry not to inherit from Object
Tree entries are not Git objects like commits, blobs, etc.

By inheriting from Object it was even possible to produce a segfault
when accessing inherited attributes like 'type'.
2011-02-23 19:01:57 +01:00
2011-02-23 17:08:25 +01:00
2011-02-07 12:37:47 +01:00
2011-02-11 18:03:33 +01:00
2011-02-10 11:40:20 +01:00

pygit2 - libgit2 bindings in Python

pygit2 is a set of Python 2.6+ bindings to the libgit2 linkable C Git library.

INSTALLING AND RUNNING

First you need to install the latest version of libgit2. You can find platform-specific instructions to build the library in the libgit2 website:

http://libgit2.github.com

Next, make sure you have the required library dependencies for pygit2: OpenSSL and ZLib. For instance, in Debian-based systems run:

$ sudo apt-get install zlib1g-dev libssl-dev

Also, make sure you have Python 2.6+ installed together with the Python development headers.

When those are installed, you can install pygit2:

$ git clone git://github.com/libgit2/pygit2.git 
$ cd pygit2
$ python setup.py install
$ python setup.py test

CONTRIBUTING

Fork libgit2/pygit2 on GitHub, make it awesomer (preferably in a branch named for the topic), send a pull request.

AUTHORS

LICENSE

GPLv2 with linking exception. See COPYING for more details.

Description
RETIRED, further work has moved to Debian project infrastructure
Readme 2 MiB
Languages
C 50.5%
Python 49.5%