#libcurl #git #http #http-request #git2 #git-repository #libgit2

git2-curl

Backend for an HTTP transport in libgit2 powered by libcurl. Intended to be used with the git2 crate

28 releases (18 breaking)

0.19.0 Aug 28, 2023
0.18.0 Apr 2, 2023
0.17.0 Jan 10, 2023
0.16.0 Jul 28, 2022
0.2.2 Mar 25, 2015

#51 in HTTP server

Download history 23848/week @ 2023-12-14 19339/week @ 2023-12-21 20487/week @ 2023-12-28 25908/week @ 2024-01-04 23219/week @ 2024-01-11 23446/week @ 2024-01-18 24460/week @ 2024-01-25 29019/week @ 2024-02-01 32766/week @ 2024-02-08 32694/week @ 2024-02-15 34728/week @ 2024-02-22 41114/week @ 2024-02-29 41362/week @ 2024-03-07 43322/week @ 2024-03-14 43084/week @ 2024-03-21 31713/week @ 2024-03-28

166,331 downloads per month
Used in 134 crates (5 directly)

MIT/Apache

1MB
19K SLoC

git2-rs

Documentation

libgit2 bindings for Rust.

[dependencies]
git2 = "0.18.2"

Rust version requirements

git2-rs works with stable Rust, and typically works with the most recent prior stable release as well.

Version of libgit2

Currently this library requires libgit2 1.7.2 (or newer patch versions). The source for libgit2 is included in the libgit2-sys crate so there's no need to pre-install the libgit2 library, the libgit2-sys crate will figure that and/or build that for you.

You can enable the Cargo feature vendored-libgit2 to always compile and statically link to a copy of libgit2. Sometimes the libgit2 on the system is required to be found and used even when vendored-libgit2 is activated. In this case, you shall set the environment variable LIBGIT2_NO_VENDOR=1.

Building git2-rs

$ git clone https://github.com/rust-lang/git2-rs
$ cd git2-rs
$ cargo build

Automating Testing

Running tests and handling all of the associated edge cases on every commit proves tedious very quickly. To automate tests and handle proper stashing and unstashing of unstaged changes and thus avoid nasty surprises, use the pre-commit hook found here and place it into the .git/hooks/ with the name pre-commit. You may need to add execution permissions with chmod +x.

To skip tests on a simple commit or doc-fixes, use git commit --no-verify.

Building on macOS 10.10+

If the ssh feature is enabled (and it is by default) then this library depends on libssh2 which depends on OpenSSL. To get OpenSSL working follow the openssl crate's instructions.

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in git2-rs by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

A crate for using libcurl as a backend for HTTP git requests with git2-rs.

This crate provides one public function, register, which will register a custom HTTP transport with libcurl for any HTTP requests made by libgit2. At this time the register function is unsafe for the same reasons that git2::transport::register is also unsafe.

It is not recommended to use this crate wherever possible. The current libcurl backend used, curl-rust, only supports executing a request in one method call implying no streaming support. This consequently means that when a repository is cloned the entire contents of the repo are downloaded into memory, and then written off to disk by libgit2 afterwards. It should be possible to alleviate this problem in the future.

NOTE: At this time this crate likely does not support a git push operation, only clones.

Dependencies

~20–30MB
~526K SLoC