From 7b7810cc5983bd893a4e446a6914eb2de7931c07 Mon Sep 17 00:00:00 2001 From: Mischa Date: Sun, 21 Jun 2026 16:26:03 +0200 Subject: [PATCH] feat: add remote-fetch-content to pull user content repo on server Separate from remote-fetch (main repo) since content sync is handled by the git-sync plugin once configured; this is for one-off manual pulls. Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01Vgmzx8VTTTmCskSpQtsLTr --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index b0290b7..8c71b21 100644 --- a/Makefile +++ b/Makefile @@ -107,6 +107,9 @@ remote-install: remote-fetch: $(SSH) "git -C $(SITE_CONFIG_DIR) checkout main && git -C $(SITE_CONFIG_DIR) pull" +remote-fetch-content: + $(SSH) "git -C $(WEBROOT)/user checkout main && git -C $(WEBROOT)/user pull" + remote-install-plugins: $(SSH) "cd $(WEBROOT) && php bin/gpm install $(shell cat plugins.txt | tr '\n' ' ') -y"