From 12fb514736b1d86f33885d98a63e29d957c747b0 Mon Sep 17 00:00:00 2001 From: Ilya Grigoriev Date: Wed, 4 Sep 2024 19:41:56 -0700 Subject: [PATCH] README: mention gitoxide in addition to libgit2 This seemed worth doing while I was working on the following commit. I also moved the sentence for the purposes of the following commit. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 814a5de54..359185310 100644 --- a/README.md +++ b/README.md @@ -195,7 +195,9 @@ the header of the website when you scroll to the top of any page. Jujutsu is designed so that the underlying data and storage model is abstract. Today, it features two [backends]—one of them uses a Git repository for storage, -while the other is a native storage backend[^native-backend]. +while the other is a native storage backend[^native-backend]. The Git backend +uses the [libgit2](https://libgit2.org/) C library and the +[gitoxide](https://github.com/Byron/gitoxide) Rust library. [backends]: https://martinvonz.github.io/jj/latest/glossary#backend @@ -205,9 +207,7 @@ add functionality that cannot easily be added to the Git backend. The Git backend is fully featured and maintained, and allows you to use Jujutsu as an alternative interface to Git. The commits you create will look like -regular Git commits. You can always switch back to Git. The Git support uses the -[libgit2](https://libgit2.org/) C library. - +regular Git commits. You can always switch back to Git.