Commit, Push, PR Creation
Commits current changes, pushes, and creates a PR.
Check Current State
git status
git diff --stat
git log --oneline -5
Workflow
- Review changed files and compose an appropriate commit message
- Use [type] format for commit messages
- Push to remote branch
- Create GitHub PR (using gh pr create)
- Write PR title and body
Commit Message Format
[type] Title
Body (optional)
Co-Authored-By: Claude <noreply@anthropic.com>
Types: feat, fix, docs, style, refactor, test, chore
Precautions
- Do not run on main/master branch
- Do not commit files containing sensitive information
- Check for .env, credentials files
