Function
print_rebase_error
(executable_name: &str, branch: &str, upstream_branch: &str)
Source from the content-addressed store, hash-verified
| 8 | use crate::{check_gh_cli_installed, Chain}; |
| 9 | |
| 10 | pub fn print_rebase_error(executable_name: &str, branch: &str, upstream_branch: &str) { |
| 11 | eprintln!( |
| 12 | "🛑 Unable to completely rebase {} to {}", |
| 13 | branch.bold(), |
| 14 | upstream_branch.bold() |
| 15 | ); |
| 16 | eprintln!( |
| 17 | "⚠️ Resolve any rebase merge conflicts, and then run {} rebase", |
| 18 | executable_name |
| 19 | ); |
| 20 | } |
| 21 | impl GitChain { |
| 22 | pub fn rebase( |
| 23 | &self, |
Tested by
no test coverage detected