Skip to main content

Module vcs_git

Module vcs_git 

Source
Expand description

Git backend implementation via shell commands.

For v0, we use git CLI commands via std::process::Command for reliability and simplicity. The gix crate is excellent but its API is large and evolving — shelling out to git gives us battle-tested behavior with minimal code for the prototype.

Every git operation includes verbose tracing for debug visibility.

Structs§

GitBackend
Git-backed VCS implementation.