Skip to content
David M. edited this page Jun 15, 2026 · 1 revision

PRPilot helps you create Pull Requests quickly from your terminal.

Creating a Pull Request

The primary command is pr create.

prpilot pr create [flags]

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

Examples

Simple PR creation:

prpilot pr create

PR 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

Clone this wiki locally