From 3a3d0832e243098bedb3c237ceab6e6a5ab06ea6 Mon Sep 17 00:00:00 2001 From: Sathiyaraman M Date: Fri, 24 Oct 2025 20:42:04 +0530 Subject: [PATCH] Include Pull Rebase in Git Panel --- crates/git_ui/src/git_ui.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/git_ui/src/git_ui.rs b/crates/git_ui/src/git_ui.rs index cf5334e3fe7b575b9b5c7972851bebff993a21f1..bd5a849db8cd0610a975ea019c2447ebd03e681b 100644 --- a/crates/git_ui/src/git_ui.rs +++ b/crates/git_ui/src/git_ui.rs @@ -603,6 +603,7 @@ mod remote_button { .action("Fetch", git::Fetch.boxed_clone()) .action("Fetch From", git::FetchFrom.boxed_clone()) .action("Pull", git::Pull.boxed_clone()) + .action("Pull (Rebase)", git::PullRebase.boxed_clone()) .separator() .action("Push", git::Push.boxed_clone()) .action("Push To", git::PushTo.boxed_clone())