kabu 0.7.1

CLI tool to enhance git worktree and jj workspace with automated setup
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::cli;
use crate::error::Result;

use std::io;

use clap_mangen::Man;

/// Execute the `man` subcommand.
pub(crate) fn run() -> Result<()> {
    let cmd = cli::build();
    Man::new(cmd).render(&mut io::stdout())?;
    Ok(())
}