1 2 3 4 5 6 7 8 9 10 11
use crate::GitUserConfig; use anyhow::{Ok, Result}; use console::style; pub fn remove(config_id: String) -> Result<()> { GitUserConfig::remove(&config_id)?; println!("Git user config {} removed successfully!", style(config_id).bold()); Ok(()) }