From 80dc51a70645913380d24bcfc8d2835fa0604432 Mon Sep 17 00:00:00 2001 From: brutsalvadi Date: Thu, 7 May 2026 22:47:31 +0200 Subject: [PATCH] Use --autostash in sync-vps.sh to handle local unstaged changes --- scripts/sync-vps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sync-vps.sh b/scripts/sync-vps.sh index 85b5b16..f29f237 100755 --- a/scripts/sync-vps.sh +++ b/scripts/sync-vps.sh @@ -5,7 +5,7 @@ set -e cd "$(dirname "$0")/.." echo "==> Pulling web-edit commits from VPS..." -git pull --rebase vps main +git pull --rebase --autostash vps main echo "==> Pushing site submodule to VPS..." (cd site && git push vps main)