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;