Fix message on push (#26588)
Instead of saying "Successfully pushed new branch" we say "Pushed x to y" Release Notes: - N/A
This commit is contained in:
parent
be8f3b3791
commit
de07b712fd
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ pub fn format_output(action: &RemoteAction, output: RemoteCommandOutput) -> Succ
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
SuccessMessage {
|
SuccessMessage {
|
||||||
message: "Successfully pushed new branch".to_owned(),
|
message: format!("Pushed {} to {}", branch_name, remote_ref.name),
|
||||||
style: SuccessStyle::ToastWithLog { output },
|
style: SuccessStyle::ToastWithLog { output },
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue