1 2 3 4 5 6 7 8 9 10 11
use std::path::Path; use anyhow::Result; use crate::subprocess_utils::check_call; /// Checkout a branch. pub fn do_checkout(project: &Path, branch: &str) -> Result<bool> { check_call(project, "git", &["checkout", branch])?; Ok(true) }