octopush 0.1.0

Profile management for Git repositories.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod core {
    pub mod app;
    pub mod auth;
    pub mod profile;
    pub mod project;
}

pub mod util {
    pub mod cli;
    pub mod git;
    pub mod output;
    pub mod path_completer;
    pub mod system;
}

#[cfg(any(test, feature = "test-helpers"))]
pub mod test_helpers;