git-mob-tool 1.9.3

A CLI tool which can help users automatically add co-author(s) to git commits for pair/mob programming
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use git_mob_tool::{
    Result, cli,
    helpers::StdCommandRunner,
    repositories::{GitConfigMobRepo, GitConfigTeamMemberRepo},
};
use std::io::stdout;

fn main() -> Result<()> {
    let team_member_repo = GitConfigTeamMemberRepo {
        command_runner: StdCommandRunner,
    };
    let mob_repo = GitConfigMobRepo {
        command_runner: StdCommandRunner,
    };
    let out = &mut stdout();
    cli::run(&team_member_repo, &mob_repo, out)?;
    Ok(())
}