Get the latest tech news
Jujutsu for busy devs
For Busy Devs - Posted jujutsu development guide Elevator Pitch Jujutsu ( jj) is a version control system with a significantly simplified mental model and command-line interface compared to Git, without sacrificing expressibility or power (in fact, you could argue Jujutsu is more powerful). Stacked-diff workflows, seamless rebases, and ephemeral revisions are all natural with jj, and it uses Git as a backend, which means you can begin using it non-destructively with a single command and can always drop back down to Git if you need to.
You might also find Steve's Jujutsu Tutorial a helpful resource, but this page will try to provide a higher-level overview for busy devs who just want to get on with it. When you start working on something new with Git, the first thing you'd usually do is check out main, pull the latest version of it from the remote, and then create a new branch off from there. The workflow from here on is the same as with Git—if you're using GitHub, the remote will reply with a message in your terminal containing a shortcut link straight to creating a PR with the new branch, just like usual.
Or read this on Hacker News