Files
2025-08-16 23:31:26 -04:00

8 lines
274 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
branch="${1:-update}"
git add -p || true
git commit -m "Phase 1 — Step 1A: remove @ts-nocheck headers (no behavior change)" || true
echo "Committed. Push with: git push origin ${branch}"
echo "Then open PR using: pr/phase1-step1a.md"