tape-git-remote 0.1.1

git remote helper that stores repositories on Tapedrive: git clone/pull/push over tape://
Documentation
1
2
3
4
5
6
7
8
9
//! `git-remote-tape`, the Git line-protocol adapter for `tape://` remotes.

#[tokio::main(flavor = "multi_thread", worker_threads = 4)]
async fn main() {
    if let Err(error) = tape_git_remote::remote_helper::run_from_env().await {
        eprintln!("git-remote-tape: {error:#}");
        std::process::exit(1);
    }
}