Files
alirezarezvani--claude-skills/.claude/commands/git/cp.md
T
wehub-resource-sync a1fa97429b
Release / Tag + GitHub Release (push) Waiting to run
Deploy Documentation to Pages / build (push) Waiting to run
Deploy Documentation to Pages / deploy (push) Blocked by required conditions
Sync Codex Skills Symlinks / sync (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 12:41:47 +08:00

910 B

description
description
Stage, commit, and push the current branch following git governance rules.
  1. Run /review to ensure lint/tests/security checks pass locally.
  2. Review and stage changes with git add (avoid staging generated or secret files).
  3. Craft a Conventional Commit message (types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert).
    • Use .github/commit-template.txt and include Context / Testing / Reviewers blocks.
    • Never add AI attribution strings to commits.
  4. Commit with git commit using the prepared message. If commitlint fails, fix the message and retry.
  5. Push to origin: git push origin $(git branch --show-current).
  6. Trigger remote checks for visibility:
    • gh workflow run ci-quality-gate.yml --ref $(git branch --show-current)
  7. Wait for workflow to finish (gh run watch --workflow ci-quality-gate.yml) before opening a pull request.