Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mbarbin/vcs
A Versatile OCaml Library for Git Operations
https://github.com/mbarbin/vcs
git ocaml
Last synced: 3 months ago
JSON representation
A Versatile OCaml Library for Git Operations
- Host: GitHub
- URL: https://github.com/mbarbin/vcs
- Owner: mbarbin
- License: lgpl-3.0
- Created: 2024-02-22T09:09:10.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-09-23T12:18:59.000Z (4 months ago)
- Last Synced: 2024-09-29T06:41:07.508Z (4 months ago)
- Topics: git, ocaml
- Language: OCaml
- Homepage: https://mbarbin.github.io/vcs/
- Size: 1 MB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: COPYING
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
A Versatile OCaml Library for Git Operations
Vcs is an OCaml library for interacting with Git repositories. It provides a type-safe and direct-style API to programmatically perform Git operations - ranging from creating commits and branches, to loading and navigating commit graphs in memory, computing diffs between revisions, and more.
Designed as an interface composed of traits, Vcs dynamically dispatches its implementation at runtime. It is currently distributed with two distinct backends: a non-blocking version built atop Eio, and a blocking variant based on OCaml's standard library. Both backends operate by executing git as an external process.
## Documentation
Vcs's documentation is published [here](https://mbarbin.github.io/vcs).
## Examples
Explore the [example](example/) directory to get a firsthand look at how Vcs works in practice.
## Motivation
Our goal is to create a versatile and highly compatible library that can cater to a wide range of use cases, while also fostering community engagement. We also hope to gain practical experience with the use of provider-based parametric libraries.
## Acknowledgements
We extend our gratitude to the following individuals and teams, whose contributions have been great sources of inspiration for the `Vcs` project:
- The `Eio` developers for their work on the [Eio](https://github.com/ocaml-multicore/eio) project. The development of `Eio` has sparked a great deal of enthusiasm for us in our work on the `Vcs` project. We've also referred to Eio's [Exn](https://ocaml-multicore.github.io/eio/eio/Eio/Exn/index.html) module in the design of `Vcs`'s error handling.
- The Jane Street developers for their significant contributions to the open source community. In particular, this project has drawn inspiration from the `Mercurial` backend of `Iron`, Jane Street's code review tool. For more details about how `Iron` has influenced this project and the licensing implications, please refer to the `NOTICE.md` file.
- Vincent Simonet and contributors for [headache](https://github.com/Frama-C/headache), which we use to manage the copyright headers at the beginning of our files.
- The [Rresult](https://erratique.ch/software/rresult/doc/Rresult/index.html#usage) developers: Their usage design guidelines have been a reference in the design of `Vcs`'s error handling, the `Vcs.Result` module in particular.
We look forward to continuing to learn from and collaborate with the broader open source community.
## Build
This repository depends on unreleased packages found in a custom [opam-repository](https://github.com/mbarbin/opam-repository.git). You'll need to add this to your opam switch when building the project.
For example, if you use a local opam switch, this would look like this:
```sh
git clone https://github.com/mbarbin/vcs.git
cd vcs
opam switch create . 5.2.0 --no-install
eval $(opam env)
opam repo add mbarbin https://github.com/mbarbin/opam-repository.git
opam install . --deps-only --with-doc --with-test --with-dev-setup
```Once this is setup, you can build with dune:
```sh
dune build @all @runtest
```## Current Status
We're currently seeking feedback as we write and publish the code and its dependencies to the opam repository. Please do not hesitate to open issues on GitHub with general feedback, requests, or simply start a discussion.