pijul 0.12.2

A patch-based distributed version control system, easy to use and fast. Command-line interface.
1
2
3
4
5
6
7
8
9
10
11
use clap::App;
use commands;

pub fn build_cli() -> App<'static, 'static> {
    let version = crate_version!();
    let app = App::new("pijul")
        .version(&version[..])
        .author("Pierre-Étienne Meunier and Florent Becker")
        .about("Version Control: fast, distributed, easy to use; pick any three");
    app.subcommands(commands::all_command_invocations())
}