From de07b712fd2823688a1c351de78b60754c32f90c Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Wed, 12 Mar 2025 14:18:28 -0600 Subject: [PATCH] Fix message on push (#26588) Instead of saying "Successfully pushed new branch" we say "Pushed x to y" Release Notes: - N/A --- crates/git_ui/src/remote_output.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/git_ui/src/remote_output.rs b/crates/git_ui/src/remote_output.rs index 9ec58d8d82..787fe17be9 100644 --- a/crates/git_ui/src/remote_output.rs +++ b/crates/git_ui/src/remote_output.rs @@ -143,7 +143,7 @@ pub fn format_output(action: &RemoteAction, output: RemoteCommandOutput) -> Succ } } else { SuccessMessage { - message: "Successfully pushed new branch".to_owned(), + message: format!("Pushed {} to {}", branch_name, remote_ref.name), style: SuccessStyle::ToastWithLog { output }, } }