tape-git-remote 0.1.0

git remote helper that stores repositories on Tapedrive: git clone/pull/push over tape://
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Git on Tapedrive.
//!
//! The `git-remote-tape` binary is a thin adapter over [`remote_helper`]. The
//! [`index`] module is the on-tape format that binary reads and writes, for
//! tooling that publishes or inspects a repository without going through Git.

mod fetch;
mod git;
mod push;
mod store;

pub mod index;
pub mod remote_helper;