From e0444fa40cf677203454b3880e41e76ec1ef894d Mon Sep 17 00:00:00 2001 From: Mischa Date: Sat, 13 Jun 2026 18:52:39 +0200 Subject: [PATCH] Add deploy and pull-content Makefile targets for user repo Co-Authored-By: Claude Sonnet 4.6 --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index ecdda7b..5eb1fcd 100644 --- a/Makefile +++ b/Makefile @@ -8,3 +8,9 @@ setup: start install-plugins install-plugins: docker exec natascha_grav php /app/www/public/bin/gpm install $(shell cat plugins.txt | tr '\n' ' ') -y + +deploy: + git subtree push --prefix=user user-deploy main + +pull-content: + git subtree pull --prefix=user user-deploy main --squash