[go: up one dir, main page]

git-protocol 0.4.0

A WIP crate of the gitoxide project for implementing git protocols
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![deny(unsafe_code)]
#![deny(rust_2018_idioms)]

pub use git_transport;

mod remote_progress;
pub use remote_progress::RemoteProgress;

pub mod credentials;
pub mod fetch;

#[doc(inline)]
pub use fetch::fetch;