diff --git a/src/inputs.rs b/src/inputs.rs index 09e6b4d..64e0b69 100644 --- a/src/inputs.rs +++ b/src/inputs.rs @@ -40,7 +40,11 @@ pub fn get_description(default_value: &str) -> Result { pub fn get_permission_to_push(branch: &str) -> Result { match Select::new( - format!("Branch {} not found on remote. Push the branch?", branch).as_str(), + format!( + "Branch {} not found on remote 'origin'. Push the branch?", + branch + ) + .as_str(), vec!["yes", "no"], ) .prompt()?