1use anyhow::Result;
23use crate::commands::Run;
45/// Create a new child branch from the current branch.
6#[derive(Debug, clap::Args)]
7pub struct New {
8 branch: String,
9}
1011impl Run for New {
12fn run(self) -> Result<()> {
13crate::stack::create_branch(&self.branch)
14 }
15}