-
Notifications
You must be signed in to change notification settings - Fork 0
Usage
David M. edited this page Jun 15, 2026
·
1 revision
PRPilot helps you create Pull Requests quickly from your terminal.
The primary command is pr create.
prpilot pr create [flags]| Flag | Shorthand | Description |
|---|---|---|
--title |
PR title (default: derived from branch name) | |
--template |
Path to a PR template markdown file | |
--assignees |
Comma-separated list of GitHub usernames | |
--labels |
Comma-separated list of labels | |
--dry-run |
Print the PR details without creating it | |
--yes |
-y |
Skip interactive prompts |
Simple PR creation:
prpilot pr createPR with specific title and labels:
prpilot pr create --title "Fix: bug in parser" --labels "bug,high-priority"Dry run to see what will be sent:
prpilot pr create --dry-run