Usage
A review moves through four steps: snapshot a branch, list what is open, review it in the TUI, and merge once it is approved.
- Create a PR from your current worktree branch against the local default
branch. A
--titleis required. - List open PRs to grab a ULID prefix.
- Review the change: launch the TUI for a side-by-side diff and inline
comments, or inspect it from the CLI with
showandcomments. - Merge the approved work back into its base branch. Add
--cleanupto also remove the source worktree and branch.
gitpr create --title "Add diff viewer"
gitpr list
gitpr show <ulid-prefix>
gitpr tui
gitpr merge <ulid-prefix>
The CLI accepts a full ULID or any unique prefix. Commands that take a PR ID but
are given none — show and comments — open an interactive picker instead.