From 3861b86287fc516976ea95cf6c9b97f64576b7ef Mon Sep 17 00:00:00 2001 From: Mai Development Date: Mon, 26 Jan 2026 23:22:55 -0500 Subject: [PATCH] chore: configure auto-push to remote on every commit - Enable git push.autoSetupRemote for automatic tracking setup - Add push.followTags to include tags in pushes - Install post-commit hook for automatic push after each commit - Update config.json to document auto-push behavior - Remote: master (giteas.fullmooncyberworks.com/mystiatech/Mai) All commits will now automatically push to the remote branch. --- .planning/config.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.planning/config.json b/.planning/config.json index c2bd666..fc305c1 100644 --- a/.planning/config.json +++ b/.planning/config.json @@ -8,5 +8,10 @@ "research": true, "plan_check": true, "verifier": true + }, + "git": { + "auto_push": true, + "push_tags": true, + "remote": "master" } }