Skill v1.0.1
currentAutomated scan100/1001 files
version: "1.0.1" name: jj description: Reference guide for jj (Jujutsu) version control operations
jj Reference Guide
Reference for common jj operations, conventions, and patterns used in this codebase.
Commit Description Format
All commit descriptions MUST be a single line following this format:
<project-prefix>: <short description>
IMPORTANT: Always use a one-line commit message. Never use multi-line descriptions or bullet points.
Project prefix is the descriptive folder path identifying the subsystem (e.g., src/auth, lib/utils, services/api).
Description starts with a lowercase verb: add, update, fix, refactor, remove, etc.
Examples
src/auth: add JWT token refresh logiclib/utils: fix date parsing for ISO formatsservices/api: add rate limiting middlewaredb/migrations: add users tabledocs: update installation instructionstests/integration: add checkout flow tests
Analyzing Changes
Overview Commands
# Files changed with change type (modified/added/deleted)jj diff --summaryjj show <rev> --summary# Lines changed per file histogramjj diff --statjj diff -r <rev> --stat# Full diffjj diffjj diff -r <rev>
Size-Based Approach
- Small changes (≤5 files, ≤200 lines): read the diff directly
- Large changes (>5 files or >200 lines): use
/jj-contextto get a structured summary
Common Operations
Creating a Commit (jj commit)
Creates a new commit from working copy changes:
jj commit -m "<project-prefix>: <description>"
After committing, @ becomes an empty working copy on top of the new commit.
Describing a Commit (jj describe)
Sets or updates the description of an existing commit:
# Describe parent commit (most common)jj describe @- -m "<project-prefix>: <description>"# Describe any commitjj describe <rev> -m "<description>"
Creating a Bookmark (jj bookmark)
Bookmarks use john/<descriptive-name> format with kebab-case:
# On parent commit (if @ is empty)jj bookmark create john/<name> -r @-# On current commitjj bookmark create john/<name># List bookmarksjj bookmark list
Naming: Use 2-4 word kebab-case names describing the work:
john/s3-inventory-downloadjohn/fix-auth-refreshjohn/refactor-poller-config
Splitting a Commit (jj split)
Splits a commit into multiple commits by file:
# Split specific files into a new commitjj split -r <rev> -m "<description>" path/to/file1 path/to/file2# Last group: just describe the remainderjj describe -r @- -m "<description>"
Note: After each split, the revision ID changes. Use @- to refer to the result.
Grouping suggestions:
- Core feature + its tests together
- Configuration/infrastructure separate
- Database migrations separate
- Refactoring/cleanup separate
Squashing Changes (jj squash)
Moves changes from working copy into ancestor commits.
Without options, squashes all changes from @ into its parent (@-):
jj squash # @ → @-
With --into (or -t), squash into a specific commit:
jj squash --into <change-id> path/to/file.py # specific filesjj squash --into <change-id> "src/**/*.py" # glob patternjj squash --into @-- # grandparent
For sub-file chunks (specific hunks, not whole files):
- Save original @ change ID:
jj log -r @ --no-graph -T 'change_id' - Create intermediate:
jj new --insert-before @ - Write only the hunks for target commit
- Squash:
jj squash --into <target-change-id> - Return to rebased @:
jj edit <rebased-@-change-id> - Remove duplicated hunks
- Restore working copy:
jj new
Always use change IDs (e.g., ksrmwuon) not commit IDs - they're stable across rewrites.
Revision Syntax
| Syntax | Meaning | |
|---|---|---|
@ | Current working copy commit | |
x- | Parent(s) of x (e.g., @- = parent of working copy) | |
x+ | Children of x | |
@-- | Grandparent (@- then - again) | |
trunk() | Main branch (main/master) | |
::x | All ancestors of x, including x | |
x:: | All descendants of x, including x | |
x..y | Ancestors of y that are NOT ancestors of x | |
x::y | Descendants of x that are also ancestors of y | |
<change-id> | Specific commit by change ID (e.g., ksrmwuon) |
Working Copy Behavior
- In jj,
@(working copy) is often an empty commit on top of your actual work - Check
jj logfor "(empty)" to know if @ has changes jj commitcreates commit and leaves @ emptyjj describemodifies existing commit, doesn't change @