| name | git-commit-and-push |
| description | Use when user says "commit and push", "커밋하고 푸시", "올려줘", "저장하고 올려". Do NOT use for commit-only (use git-commit) or push-only (use git-push). |
Git Commit and Push
커밋과 푸시를 순차적으로 수행합니다.
⚠️ GenOS 레포 (~/work/GenOS, 또는 .claude/skills/genos-commit/ 존재) 에서는
Commit Phase를 genos-commit 스킬로 위임한다 (타입 접두사·이슈번호·Co-Authored-By 필수).
아래 Quick Flow의 git commit -v를 그대로 쓰지 말 것.
Workflow
- Commit Phase -
/git-commit 스킬 참조
- Push Phase -
/git-push 스킬 참조
Quick Flow
git status
git fetch origin
git add <files>
git commit -v
git pull --rebase origin $(git branch --show-current)
git push origin $(git branch --show-current)
Checklist