bitbucket_server_cli 0.4.5

A CLI for cloning and updating entire projects from bitbucket server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![deny(warnings)]
#![forbid(unsafe_code)]

extern crate reqwest;
#[macro_use]
extern crate serde;

pub mod cloner;
pub mod types;

mod bitbucket;
pub mod completion;
mod git;
mod input;
pub mod util;