tape_git_remote/lib.rs
1//! Git on Tapedrive.
2//!
3//! The `git-remote-tape` binary is a thin adapter over [`remote_helper`]. The
4//! [`index`] module is the on-tape format that binary reads and writes, for
5//! tooling that publishes or inspects a repository without going through Git.
6
7mod fetch;
8mod git;
9mod push;
10mod store;
11
12pub mod index;
13pub mod remote_helper;