From 4c167dd31de4af1a358e787116b4a0d8c8338e33 Mon Sep 17 00:00:00 2001 From: Guus Waals <_@guusw.nl> Date: Wed, 29 Oct 2025 19:38:15 +0800 Subject: [PATCH] Pull with rebase by default --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index ec8fbb0..b50da2a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -113,6 +113,7 @@ async fn update_handler(State(state): State) -> impl IntoResponse { // Run git pull --autostash let output = Command::new("git") .arg("pull") + .arg("--rebase") .arg("--autostash") .output() .await;