]> git.proxmox.com Git - libgit2.git/blob - README.md
Merge branch 'pr/3957'
[libgit2.git] / README.md
1 libgit2 - the Git linkable library
2 ==================================
3
4 [![Travis Build Status](https://secure.travis-ci.org/libgit2/libgit2.svg?branch=master)](http://travis-ci.org/libgit2/libgit2)
5 [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/xvof5b4t5480a2q3/branch/master?svg=true)](https://ci.appveyor.com/project/libgit2/libgit2/branch/master)
6 [![Coverity Scan Build Status](https://scan.coverity.com/projects/639/badge.svg)](https://scan.coverity.com/projects/639)
7
8 `libgit2` is a portable, pure C implementation of the Git core methods
9 provided as a re-entrant linkable library with a solid API, allowing you to
10 write native speed custom Git applications in any language with bindings.
11
12 `libgit2` is licensed under a **very permissive license** (GPLv2 with a special
13 Linking Exception). This basically means that you can link it (unmodified)
14 with any kind of software without having to release its source code.
15 Additionally, the example code has been released to the public domain (see the
16 [separate license](examples/COPYING) for more information).
17
18 Getting Help
19 ============
20
21 **Join us on Slack**
22
23 Visit [slack.libgit2.org](http://slack.libgit2.org/) to sign up, then join
24 us in `#libgit2`. If you prefer IRC, you can also point your client to our
25 slack channel once you've registered.
26
27 **Getting Help**
28
29 If you have questions about the library, please be sure to check out the
30 [API documentation](http://libgit2.github.com/libgit2/). If you still have
31 questions, reach out to us on Slack or post a question on
32 [StackOverflow](http://stackoverflow.com/questions/tagged/libgit2) (with the `libgit2` tag).
33
34 **Reporting Bugs**
35
36 Please open a [GitHub Issue](https://github.com/libgit2/libgit2/issues) and
37 include as much information as possible. If possible, provide sample code
38 that illustrates the problem you're seeing. If you're seeing a bug only
39 on a specific repository, please provide a link to it if possible.
40
41 We ask that you not open a GitHub Issue for help, only for bug reports.
42
43 What It Can Do
44 ==============
45
46 The goal of this library is to allow its users the ability to handle Git data in
47 their applications from their programming language of choice, as is used in
48 production for many applications including the GitHub.com site, in Plastic SCM
49 and also powering Microsoft's Visual Studio tools for Git.
50
51 It does not aim to replace the git tool or its user-facing commands. Some APIs
52 resemble the plumbing commands as those align closely with the concepts of the
53 Git system, but most commands a user would type are out of scope for this
54 library to implement directly.
55
56 The library provides:
57
58 * SHA conversions, formatting and shortening
59 * abstracted ODB backend system
60 * commit, tag, tree and blob parsing, editing, and write-back
61 * tree traversal
62 * revision walking
63 * index file (staging area) manipulation
64 * reference management (including packed references)
65 * config file management
66 * high level repository management
67 * thread safety and reentrancy
68 * descriptive and detailed error messages
69 * ...and more (over 175 different API calls)
70
71 Optional dependencies
72 =====================
73
74 While the library provides git functionality without the need for
75 dependencies, it can make use of a few libraries to add to it:
76
77 - pthreads (non-Windows) to enable threadsafe access as well as multi-threaded pack generation
78 - OpenSSL (non-Windows) to talk over HTTPS and provide the SHA-1 functions
79 - LibSSH2 to enable the SSH transport
80 - iconv (OSX) to handle the HFS+ path encoding peculiarities
81
82 Initialization
83 ===============
84
85 The library needs to keep track of some global state. Call
86
87 git_libgit2_init();
88
89 before calling any other libgit2 functions. You can call this function many times. A matching number of calls to
90
91 git_libgit2_shutdown();
92
93 will free the resources. Note that if you have worker threads, you should
94 call `git_libgit2_shutdown` *after* those threads have exited. If you
95 require assistance coordinating this, simply have the worker threads call
96 `git_libgit2_init` at startup and `git_libgit2_shutdown` at shutdown.
97
98 Threading
99 =========
100
101 See [THREADING](THREADING.md) for information
102
103 Conventions
104 ===========
105
106 See [CONVENTIONS](CONVENTIONS.md) for an overview of the external
107 and internal API/coding conventions we use.
108
109 Building libgit2 - Using CMake
110 ==============================
111
112 `libgit2` builds cleanly on most platforms without any external dependencies.
113 Under Unix-like systems, like Linux, \*BSD and Mac OS X, libgit2 expects `pthreads` to be available;
114 they should be installed by default on all systems. Under Windows, libgit2 uses the native Windows API
115 for threading.
116
117 The `libgit2` library is built using [CMake](<https://cmake.org/>) (version 2.8 or newer) on all platforms.
118
119 On most systems you can build the library using the following commands
120
121 $ mkdir build && cd build
122 $ cmake ..
123 $ cmake --build .
124
125 Alternatively you can point the CMake GUI tool to the CMakeLists.txt file and generate platform specific build project or IDE workspace.
126
127 Once built, you can run the tests from the `build` directory with the command
128
129 $ make test
130
131 Alternatively you can run the test suite directly using,
132
133 $ ./libgit2_clar
134
135 To install the library you can specify the install prefix by setting:
136
137 $ cmake .. -DCMAKE_INSTALL_PREFIX=/install/prefix
138 $ cmake --build . --target install
139
140 For more advanced use or questions about CMake please read <https://cmake.org/Wiki/CMake_FAQ>.
141
142 The following CMake variables are declared:
143
144 - `BIN_INSTALL_DIR`: Where to install binaries to.
145 - `LIB_INSTALL_DIR`: Where to install libraries to.
146 - `INCLUDE_INSTALL_DIR`: Where to install headers to.
147 - `BUILD_SHARED_LIBS`: Build libgit2 as a Shared Library (defaults to ON)
148 - `BUILD_CLAR`: Build [Clar](https://github.com/vmg/clar)-based test suite (defaults to ON)
149 - `THREADSAFE`: Build libgit2 with threading support (defaults to ON)
150 - `STDCALL`: Build libgit2 as `stdcall`. Turn off for `cdecl` (Windows; defaults to ON)
151
152 Compiler and linker options
153 ---------------------------
154
155 CMake lets you specify a few variables to control the behavior of the
156 compiler and linker. These flags are rarely used but can be useful for
157 64-bit to 32-bit cross-compilation.
158
159 - `CMAKE_C_FLAGS`: Set your own compiler flags
160 - `CMAKE_FIND_ROOT_PATH`: Override the search path for libraries
161 - `ZLIB_LIBRARY`, `OPENSSL_SSL_LIBRARY` AND `OPENSSL_CRYPTO_LIBRARY`:
162 Tell CMake where to find those specific libraries
163
164 MacOS X
165 -------
166
167 If you want to build a universal binary for Mac OS X, CMake sets it
168 all up for you if you use `-DCMAKE_OSX_ARCHITECTURES="i386;x86_64"`
169 when configuring.
170
171 Windows
172 -------
173
174 You need to run the CMake commands from the Visual Studio command
175 prompt, not the regular or Windows SDK one. Select the right generator
176 for your version with the `-G "Visual Studio X" option.
177
178 See [the website](http://libgit2.github.com/docs/guides/build-and-link/)
179 for more detailed instructions.
180
181 Android
182 -------
183
184 Extract toolchain from NDK using, `make-standalone-toolchain.sh` script.
185 Optionally, crosscompile and install OpenSSL inside of it. Then create CMake
186 toolchain file that configures paths to your crosscompiler (substitute `{PATH}`
187 with full path to the toolchain):
188
189 SET(CMAKE_SYSTEM_NAME Linux)
190 SET(CMAKE_SYSTEM_VERSION Android)
191
192 SET(CMAKE_C_COMPILER {PATH}/bin/arm-linux-androideabi-gcc)
193 SET(CMAKE_CXX_COMPILER {PATH}/bin/arm-linux-androideabi-g++)
194 SET(CMAKE_FIND_ROOT_PATH {PATH}/sysroot/)
195
196 SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
197 SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
198 SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
199
200 Add `-DCMAKE_TOOLCHAIN_FILE={pathToToolchainFile}` to cmake command
201 when configuring.
202
203 Language Bindings
204 ==================================
205
206 Here are the bindings to libgit2 that are currently available:
207
208 * C++
209 * libqgit2, Qt bindings <https://projects.kde.org/projects/playground/libs/libqgit2/repository/>
210 * Chicken Scheme
211 * chicken-git <https://wiki.call-cc.org/egg/git>
212 * D
213 * dlibgit <https://github.com/s-ludwig/dlibgit>
214 * Delphi
215 * GitForDelphi <https://github.com/libgit2/GitForDelphi>
216 * Erlang
217 * Geef <https://github.com/carlosmn/geef>
218 * Go
219 * git2go <https://github.com/libgit2/git2go>
220 * GObject
221 * libgit2-glib <https://wiki.gnome.org/Projects/Libgit2-glib>
222 * Haskell
223 * hgit2 <https://github.com/jwiegley/gitlib>
224 * Java
225 * Jagged <https://github.com/ethomson/jagged>
226 * Julia
227 * LibGit2.jl <https://github.com/jakebolewski/LibGit2.jl>
228 * Lua
229 * luagit2 <https://github.com/libgit2/luagit2>
230 * .NET
231 * libgit2sharp <https://github.com/libgit2/libgit2sharp>
232 * Node.js
233 * nodegit <https://github.com/nodegit/nodegit>
234 * Objective-C
235 * objective-git <https://github.com/libgit2/objective-git>
236 * OCaml
237 * ocaml-libgit2 <https://github.com/fxfactorial/ocaml-libgit2>
238 * Parrot Virtual Machine
239 * parrot-libgit2 <https://github.com/letolabs/parrot-libgit2>
240 * Perl
241 * Git-Raw <https://github.com/jacquesg/p5-Git-Raw>
242 * PHP
243 * php-git <https://github.com/libgit2/php-git>
244 * PowerShell
245 * PSGit <https://github.com/PoshCode/PSGit>
246 * Python
247 * pygit2 <https://github.com/libgit2/pygit2>
248 * R
249 * git2r <https://github.com/ropensci/git2r>
250 * Ruby
251 * Rugged <https://github.com/libgit2/rugged>
252 * Rust
253 * git2-rs <https://github.com/alexcrichton/git2-rs>
254 * Swift
255 * SwiftGit2 <https://github.com/SwiftGit2/SwiftGit2>
256 * Vala
257 * libgit2.vapi <https://github.com/apmasell/vapis/blob/master/libgit2.vapi>
258
259 If you start another language binding to libgit2, please let us know so
260 we can add it to the list.
261
262 How Can I Contribute?
263 ==================================
264
265 We welcome new contributors! We have a number of issues marked as
266 ["up for grabs"](https://github.com/libgit2/libgit2/issues?q=is%3Aissue+is%3Aopen+label%3A%22up+for+grabs%22)
267 and
268 ["easy fix"](https://github.com/libgit2/libgit2/issues?utf8=✓&q=is%3Aissue+is%3Aopen+label%3A%22easy+fix%22)
269 that are good places to jump in and get started. There's much more detailed
270 information in our list of [outstanding projects](PROJECTS.md).
271
272 Please be sure to check the [contribution guidelines](CONTRIBUTING.md) to
273 understand our workflow, and the libgit2 [coding conventions](CONVENTIONS.md).
274
275 License
276 ==================================
277
278 `libgit2` is under GPL2 **with linking exception**. This means you can link to
279 and use the library from any program, proprietary or open source; paid or
280 gratis. However, if you modify libgit2 itself, you must distribute the
281 source to your modified version of libgit2.
282
283 See the [COPYING file](COPYING) for the full license text.