chore: add push_all.sh and document remotes in README
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Executable
+13
@@ -0,0 +1,13 @@
|
||||
#!/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."
|
||||
Reference in New Issue
Block a user