pull-request
SKILL.md
Create GitHub Pull Request
Create a draft pull request using gh CLI, following the project's pull_request_template.md format.
Process
-
Run these commands in parallel to understand the current state:
git statusto see all changes (never use-uallflag)git branch --show-currentto get current branch namegit log origin/main..HEAD --onelineto see commits that will be in the PRgit diff origin/main...HEAD --statto see changed files summary
-
Read the PR template from
.github/pull_request_template.md -
Check if the current branch tracks a remote:
- If not, push with
-uflag:git push -u origin <branch-name>
- If not, push with