What does HackerNews think of gitoxide?

An idiomatic, lean, fast & safe pure Rust implementation of Git

Language: Rust

It'll be interesting to see where the gitoxide[1] project goes, being a rust implementation of git

[1] https://github.com/Byron/gitoxide/

`gitoxide` can currently perform many of the tasks required, and closing the loop for a full clone with worktree is going to happen at the end of this year.

That said, here is how to receive a pack from the remote and resolve it: `mkdir out && gix -v no-repo pack receive https://github.com/Byron/gitoxide out`.

Or my own project: https://github.com/martinvonz/jj.

I think https://github.com/Byron/gitoxide also plans to provide a different CLI, but I don't think they've started working on it.

For Rust, see https://github.com/Byron/gitoxide , which provides both a pure Rust library and a command-line tool built atop that library.