A minimal cheat‑sheet of the day‑to‑day Jujutsu (jj) commands you (or an agent) really need.
| Purpose | Command | What it does |
|---|---|---|
| See changes | jj status |
Show working‑copy commit and staged/unstaged file modifications |
| Browse history | jj log |
One‑line graph of commits; add -r : --git to include Git hashes |
| Diff current work | jj diff |
Compare working‑copy commit to its parent (like git diff) |
| Start a new change | jj new |
Fork a fresh change from @ (no checkout dance) |