jujutsu
Installation
SKILL.md
Jujutsu Usage Guide
Jujutsu (jj) is a next-generation VCS compatible with Git repositories but with fundamentally different usage patterns.
Mental Model (Fundamental Differences from Git)
Don't Think in Git Terms
| Git Thinking | Problem |
|---|---|
git add |
jj has no staging area, don't need add |
| Commits can't be changed | jj commits are editable "changes" |
| Use branches | jj uses bookmarks, lightweight pointers |
git stash |
Use jj new @- instead |
| Conflicts must be resolved immediately | jj conflicts can be deferred |
Correct Mental Model
Related skills