Hacker News new | ask | show | jobs
by Kye 48 days ago
I assume you don't mean Tangled is an expert martial artist. Can you translate this to not-a-dev-but-uses-git?
4 comments

They’re referring to the Jujutsu VCS https://docs.jj-vcs.dev/latest/
Jujutsu is a git-compatible version control system
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

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

You are mistaken there: Git is just one (of currently two) backend of the jj version control system. It’s far from being a wrapper.

Just because `jj` wraps around git doesn't mean it cannot have another backend. My comment doesn't imply that it only wraps around `git`. More importantly, the other backend which `jj` offers is (afaik) exclusively used at Google. Unless you are a Googler you will be using `jj` with `git`.

Also, the comment was aimed at a person who is obviously very invested in `git`. I was doing my best to offer them a description of `jj` they could swallow.

PS: pedantic people are annoying.

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