forked from Qortal/q-blog
8 lines
274 B
Bash
Executable File
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"
|