| name | pr |
| description | Create a pull request for the current branch against main |
Pull Request
Create a pull request for the current branch against main.
- Run
git diff main...HEAD and git log main..HEAD --oneline to understand
all changes since main.
- Push the current branch to origin with
-u.
- Draft a short PR title under 70 characters and a concise body:
## Summary: 1-3 succinct bullet points.
## Test plan: bulleted checklist.
- Create the PR with
gh pr create --base main. Try with --draft first. If
that fails because the repo does not support drafts, retry without --draft.
- Return the PR URL.