git-project 0.2.0

Manage piles of git repositories with ease!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{err::Result, options};
use structopt::StructOpt;

pub fn run(opts: &options::CompletionOptions) -> Result<()> {
    options::Options::clap().gen_completions_to(
        "git-project",
        opts.shell.into(),
        &mut std::io::stdout(),
    );

    Ok(())
}