From c4ecb5862b4c08bf113ee67191b78b834a869a9a Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 30 Jul 2026 08:47:40 +0000 Subject: [PATCH] chore: add push-both script for GitHub + Gitea remotes Keeps o0kuma/hikikomori and gitea oh/iykyka in sync from this workspace. Co-authored-by: okuma --- scripts/push-both.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 scripts/push-both.sh diff --git a/scripts/push-both.sh b/scripts/push-both.sh new file mode 100755 index 0000000..ef28999 --- /dev/null +++ b/scripts/push-both.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Push main to GitHub (origin) and Gitea (gitea) remotes. +set -euo pipefail +BRANCH="${1:-main}" +cd "$(dirname "$0")/.." +git push -u origin "$BRANCH" +git push -u gitea "$BRANCH" +echo "Pushed $BRANCH → origin (GitHub) + gitea (gitea.iykyka.com/oh/iykyka)"