]> git.proxmox.com Git - libgit2.git/blob - README.md
2187c7f9f61f2ea82bd96578b487d64b0f836bb8
[libgit2.git] / README.md
1 libgit2 - the Git linkable library
2 ==================================
3
4 [![Travis Build Status](https://secure.travis-ci.org/libgit2/libgit2.png?branch=master)](http://travis-ci.org/libgit2/libgit2)
5 [![Coverity Scan Build Status](https://scan.coverity.com/projects/639/badge.svg)](https://scan.coverity.com/projects/639)
6
7 `libgit2` is a portable, pure C implementation of the Git core methods
8 provided as a re-entrant linkable library with a solid API, allowing you to
9 write native speed custom Git applications in any language with bindings.
10
11 `libgit2` is licensed under a **very permissive license** (GPLv2 with a special
12 Linking Exception). This basically means that you can link it (unmodified)
13 with any kind of software without having to release its source code.
14 Additionally, the example code has been released to the public domain (see the
15 [separate license](examples/COPYING) for more information).
16
17 * Website: [libgit2.github.com](http://libgit2.github.com)
18 * StackOverflow Tag: [libgit2](http://stackoverflow.com/questions/tagged/libgit2)
19 * Issues: [GitHub Issues](https://github.com/libgit2/libgit2/issues) (Right here!)
20 * API documentation: <http://libgit2.github.com/libgit2>
21 * IRC: [#libgit2](irc://irc.freenode.net/libgit2) on irc.freenode.net.
22 * Mailing list: The libgit2 mailing list was
23 traditionally hosted in Librelist but has been deprecated. We encourage you to
24 [use StackOverflow](http://stackoverflow.com/questions/tagged/libgit2) instead for any questions regarding
25 the library, or [open an issue](https://github.com/libgit2/libgit2/issues)
26 on GitHub for bug reports. The mailing list archives are still available at
27 <http://librelist.com/browser/libgit2/>.
28
29
30 What It Can Do
31 ==============
32
33 `libgit2` is already very usable and is being used in production for many
34 applications including the GitHub.com site, in Plastic SCM and also powering
35 Microsoft's Visual Studio tools for Git. The library provides:
36
37 * SHA conversions, formatting and shortening
38 * abstracted ODB backend system
39 * commit, tag, tree and blob parsing, editing, and write-back
40 * tree traversal
41 * revision walking
42 * index file (staging area) manipulation
43 * reference management (including packed references)
44 * config file management
45 * high level repository management
46 * thread safety and reentrancy
47 * descriptive and detailed error messages
48 * ...and more (over 175 different API calls)
49
50 Optional dependencies
51 =====================
52
53 While the library provides git functionality without the need for
54 dependencies, it can make use of a few libraries to add to it:
55
56 - pthreads (non-Windows) to enable threadsafe access as well as multi-threaded pack generation
57 - OpenSSL (non-Windows) to talk over HTTPS and provide the SHA-1 functions
58 - LibSSH2 to enable the SSH transport
59 - iconv (OSX) to handle the HFS+ path encoding peculiarities
60
61 Threading
62 =========
63
64 See [THREADING](THREADING.md) for information
65
66 Building libgit2 - Using CMake
67 ==============================
68
69 `libgit2` builds cleanly on most platforms without any external dependencies.
70 Under Unix-like systems, like Linux, \*BSD and Mac OS X, libgit2 expects `pthreads` to be available;
71 they should be installed by default on all systems. Under Windows, libgit2 uses the native Windows API
72 for threading.
73
74 The `libgit2` library is built using [CMake](<http://www.cmake.org>) (version 2.6 or newer) on all platforms.
75
76 On most systems you can build the library using the following commands
77
78 $ mkdir build && cd build
79 $ cmake ..
80 $ cmake --build .
81
82 Alternatively you can point the CMake GUI tool to the CMakeLists.txt file and generate platform specific build project or IDE workspace.
83
84 To install the library you can specify the install prefix by setting:
85
86 $ cmake .. -DCMAKE_INSTALL_PREFIX=/install/prefix
87 $ cmake --build . --target install
88
89 For more advanced use or questions about CMake please read <http://www.cmake.org/Wiki/CMake_FAQ>.
90
91 The following CMake variables are declared:
92
93 - `BIN_INSTALL_DIR`: Where to install binaries to.
94 - `LIB_INSTALL_DIR`: Where to install libraries to.
95 - `INCLUDE_INSTALL_DIR`: Where to install headers to.
96 - `BUILD_SHARED_LIBS`: Build libgit2 as a Shared Library (defaults to ON)
97 - `BUILD_CLAR`: Build [Clar](https://github.com/vmg/clar)-based test suite (defaults to ON)
98 - `THREADSAFE`: Build libgit2 with threading support (defaults to ON)
99 - `STDCALL`: Build libgit2 as `stdcall`. Turn off for `cdecl` (Windows; defaults to ON)
100
101 Compiler and linker options
102 ---------------------------
103
104 CMake lets you specify a few variables to control the behavior of the
105 compiler and linker. These flags are rarely used but can be useful for
106 64-bit to 32-bit cross-compilation.
107
108 - `CMAKE_C_FLAGS`: Set your own compiler flags
109 - `CMAKE_FIND_ROOT_PATH`: Override the search path for libraries
110 - `ZLIB_LIBRARY`, `OPENSSL_SSL_LIBRARY` AND `OPENSSL_CRYPTO_LIBRARY`:
111 Tell CMake where to find those specific libraries
112
113 MacOS X
114 -------
115
116 If you want to build a universal binary for Mac OS X, CMake sets it
117 all up for you if you use `-DCMAKE_OSX_ARCHITECTURES="i386;x86_64"`
118 when configuring.
119
120 Windows
121 -------
122
123 You need to run the CMake commands from the Visual Studio command
124 prompt, not the regular or Windows SDK one. Select the right generator
125 for your version with the `-G "Visual Studio X" option.
126
127 See [the website](https://libgit2.github.com/docs/guides/build-and-link)
128 for more detailed instructions.
129
130 Android
131 -------
132
133 Extract toolchain from NDK using, `make-standalone-toolchain.sh` script.
134 Optionally, crosscompile and install OpenSSL inside of it. Then create CMake
135 toolchain file that configures paths to your crosscompiler (substitute `{PATH}`
136 with full path to the toolchain):
137
138 SET(CMAKE_SYSTEM_NAME Linux)
139 SET(CMAKE_SYSTEM_VERSION Android)
140
141 SET(CMAKE_C_COMPILER {PATH}/bin/arm-linux-androideabi-gcc)
142 SET(CMAKE_CXX_COMPILER {PATH}/bin/arm-linux-androideabi-g++)
143 SET(CMAKE_FIND_ROOT_PATH {PATH}/sysroot/)
144
145 SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
146 SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
147 SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
148
149 Add `-DCMAKE_TOOLCHAIN_FILE={pathToToolchainFile} -DANDROID=1` to cmake command
150 when configuring.
151
152 Language Bindings
153 ==================================
154
155 Here are the bindings to libgit2 that are currently available:
156
157 * C++
158 * libqgit2, Qt bindings <https://projects.kde.org/projects/playground/libs/libqgit2/>
159 * Chicken Scheme
160 * chicken-git <https://wiki.call-cc.org/egg/git>
161 * D
162 * dlibgit <https://github.com/AndrejMitrovic/dlibgit>
163 * Delphi
164 * GitForDelphi <https://github.com/libgit2/GitForDelphi>
165 * Erlang
166 * Geef <https://github.com/carlosmn/geef>
167 * Go
168 * git2go <https://github.com/libgit2/git2go>
169 * GObject
170 * libgit2-glib <https://live.gnome.org/Libgit2-glib>
171 * Haskell
172 * hgit2 <https://github.com/fpco/gitlib>
173 * Java
174 * Jagged <https://github.com/ethomson/jagged>
175 * Julia
176 * LibGit2.jl <https://github.com/jakebolewski/LibGit2.jl>
177 * Lua
178 * luagit2 <https://github.com/libgit2/luagit2>
179 * .NET
180 * libgit2sharp <https://github.com/libgit2/libgit2sharp>
181 * Node.js
182 * node-gitteh <https://github.com/libgit2/node-gitteh>
183 * nodegit <https://github.com/tbranyen/nodegit>
184 * Objective-C
185 * objective-git <https://github.com/libgit2/objective-git>
186 * OCaml
187 * libgit2-ocaml <https://github.com/burdges/libgit2-ocaml>
188 * Parrot Virtual Machine
189 * parrot-libgit2 <https://github.com/letolabs/parrot-libgit2>
190 * Perl
191 * Git-Raw <https://github.com/jacquesg/p5-Git-Raw>
192 * PHP
193 * php-git <https://github.com/libgit2/php-git>
194 * PowerShell
195 * GitPowerShell <https://github.com/ethomson/gitpowershell>
196 * Python
197 * pygit2 <https://github.com/libgit2/pygit2>
198 * R
199 * git2r <https://github.com/ropensci/git2r>
200 * Ruby
201 * Rugged <https://github.com/libgit2/rugged>
202 * Rust
203 * git2-rs <https://github.com/alexcrichton/git2-rs>
204 * Vala
205 * libgit2.vapi <https://github.com/apmasell/vapis/blob/master/libgit2.vapi>
206
207 If you start another language binding to libgit2, please let us know so
208 we can add it to the list.
209
210 How Can I Contribute?
211 ==================================
212
213 Check the [contribution guidelines](CONTRIBUTING.md) to understand our
214 workflow, the libgit2 [coding conventions](CONVENTIONS.md), and out list of
215 [good starting projects](PROJECTS.md).
216
217 License
218 ==================================
219
220 `libgit2` is under GPL2 **with linking exception**. This means you can link to
221 and use the library from any program, proprietary or open source; paid or
222 gratis. However, you cannot modify libgit2 and distribute it without
223 supplying the source.
224
225 See the [COPYING file](COPYING) for the full license text.