reviewing.md

 11. Apply the contributor's patches locally
 22. Make review comments or code changes directly in code, then commit
 33. Submit the review as a patch
 44. Once satisfied, accept the PR and push to upstream
 5
 6```console
 7# Apply patches from a PR
 8ssh pr.pico.sh pr print {id} | git am -3
 9
10# Submit a review (comments/changes as commits)
11git format-patch origin/main --stdout | ssh pr.pico.sh pr add --review {id}
12
13# Submit a review with a comment
14git format-patch origin/main --stdout | ssh pr.pico.sh pr add --review --comment "Thank you for the contribution! Just left a couple inline notes" {id}
15
16# Accept a PR (accepts multiple IDs)
17ssh pr.pico.sh pr accept {id}
18
19# Accept with a comment piped via stdin
20echo "looks good, merging!" | ssh pr.pico.sh pr accept --comment {id}
21
22# Submit final patchset and accept in one step
23git format-patch origin/main --stdout | ssh pr.pico.sh pr add --accept {id}
24
25# Close/reject a PR (accepts multiple IDs)
26ssh pr.pico.sh pr close {id}
27
28# Close with a comment piped via stdin
29echo "won't fix because ..." | ssh pr.pico.sh pr close --comment {id}
30
31# Submit patchset and close in one step
32git format-patch origin/main --stdout | ssh pr.pico.sh pr add --close {id}
33
34# Reopen a previously closed PR
35ssh pr.pico.sh pr reopen {id}
36
37# Reopen with a comment piped via stdin
38echo "reconsidered, reopening because ..." | ssh pr.pico.sh pr reopen --comment {id}
39
40# Edit a PR's title
41ssh pr.pico.sh pr edit {id} {title}
42
43# Prep and push to upstream
44git rebase -i origin/main # or whatever the correct `remote/canonical-branch` are
45git push origin main # or whatever the correct `remote canonical-branch` are
46```