Remix.run Logo
Kye 6 hours ago

I assume you don't mean Tangled is an expert martial artist. Can you translate this to not-a-dev-but-uses-git?

DauntingPear7 6 hours ago | parent | next [-]

They’re referring to the Jujutsu VCS https://docs.jj-vcs.dev/latest/

whereistejas 5 hours ago | parent | prev | next [-]

oopsie; should have added links.

`jj` is a wrapper around git and offers a much better dev-ex for managing changes.

it has features like:

- conflicts are first class citizens

- `rebase` is the default mode; there is no need for an interactive rebase mode.

- all descendant changes automatically rebase

- a much more intuitive version of `git reflog`. in `jj`, we have `jj op log`

- cheap branching: branches in `jj` are just tags (or bookmarks) that can be moved around

siarune 6 hours ago | parent | prev | next [-]

Jujutsu is a git-compatible version control system

jakelazaroff 6 hours ago | parent | prev [-]

jujutsu is a different version control system: https://www.jj-vcs.dev/