Open the Right Review
`tuicr` is a terminal UI for code review. The first useful skill is deciding what review target you want: uncommitted work, a commit range, a pull request, a merge request, or markdown output for another tool.
The launch map
tuicr # pick from a commit selector
tuicr -w # review uncommitted changes
tuicr -r main..HEAD # review a commit range
tuicr pr 125 # review a GitHub or Bitbucket PR
tuicr mr 125 # review a GitLab MR
tuicr --stdout # print review markdown to stdout
-w. A branch stack points to -r. Remote review points to pr or mr.
Retrieval check
You want to review your current uncommitted working-tree changes. Which command opens the right target?
Correct. -w skips the selector and opens uncommitted changes.
Not quite. Use tuicr -w for uncommitted working-tree changes.
Practice
- Pick one repo you review often.
- Name the review target you usually care about: working tree, range, PR, or MR.
- Say the matching command from memory before looking at the field guide.