repo-cli 0.1.3

A sane way to manage all of your git repositories
Documentation
1
2
3
4
5
6
7
8
9
10
pub fn init(fzf: bool) -> String {
    let completion = include_str!("completion.fish");
    let work = if fzf {
        include_str!("fzf.fish")
    } else {
        include_str!("work.fish")
    };

    format!("{}\n{}", completion, work)
}