Files
fn-design-system/push_all.sh
T
Egutierrez 717ab2173e chore: add push_all.sh and document remotes in README
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-21 19:11:43 +02:00

14 lines
267 B
Bash
Executable File

#!/usr/bin/env bash
# Push master to both remotes (gitea + github).
set -euo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")"
echo "→ Pushing to Gitea..."
git push gitea master
echo "→ Pushing to GitHub..."
git push github master
echo "✓ Both remotes updated."