A Git-compatible VCS that is both simple and powerful
Go to file
Ilya Grigoriev 0e2579ee6a Switch graph node to use for commit instead of
This follows up on 5c703aeb03.

The only reason for this change is that, subjectively, the result looks better to me. I'm not sure why, but I couldn't get used to the old symbol in spite of its seeming reasonableness. It felt really bold and heavy.

If people agree, we can wait until we need to update the screenshots for some other reason before merging this. Sorry I didn't figure this out while the discussion about the referenced commit was going on.

I'm not 100% certain how many fonts support each symbol. Please try it out and let me know if it doesn't work for you.

Compare after:

![image](https://user-images.githubusercontent.com/4123047/229251383-563b889d-7233-42e2-a3c5-bf9368a4d1fd.png)

and before:

![image](https://user-images.githubusercontent.com/4123047/229251695-7fd0ff2c-2832-4262-ade5-5120288cccdf.png)
2023-04-02 23:15:37 -07:00
.github github: fix name of workflow for Dependabot auto-merge 2023-03-30 19:29:18 -07:00
demos Switch graph node to use for commit instead of 2023-04-02 23:15:37 -07:00
docs Switch graph node to use for commit instead of 2023-04-02 23:15:37 -07:00
examples backend: let backend decide length of change id 2023-02-07 22:31:34 -08:00
lib revset: make error type opaque to try_transform_expression() 2023-04-03 10:55:03 +09:00
src Switch graph node to use for commit instead of 2023-04-02 23:15:37 -07:00
testing cli: add a command for benchmarking many revsets 2023-03-28 10:21:10 -07:00
tests Switch graph node to use for commit instead of 2023-04-02 23:15:37 -07:00
.editorconfig editorconfig: disable trim_trailing_whitespace due to multi-line bugs 2022-03-07 20:23:55 -08:00
.envrc.recommended Move .envrc to .envrc.recommended to make it opt-in 2023-03-26 21:55:12 -06:00
.gitattributes build: mark Cargo.lock as binary for merging 2022-04-25 22:58:15 -07:00
.gitignore Move .envrc to .envrc.recommended to make it opt-in 2023-03-26 21:55:12 -06:00
AUTHORS copyright: change from "Google LLC" to "The Jujutsu Authors" 2022-11-28 06:05:45 -10:00
Cargo.lock cargo: bump pest from 2.5.6 to 2.5.7 2023-03-31 09:27:29 -07:00
Cargo.toml cargo: bump pest from 2.5.6 to 2.5.7 2023-03-31 09:27:29 -07:00
CHANGELOG.md Switch graph node to use for commit instead of 2023-04-02 23:15:37 -07:00
deny.toml cargo: replace dependency on Sapling's dag by renderdag 2023-01-22 00:03:48 -08:00
flake.lock nix: replace manual system iteration by flake-utils 2023-01-28 07:10:12 +01:00
flake.nix op_store: drop support for upgrading from Thrift implementation 2023-03-30 20:00:33 -07:00
LICENSE Boilerplate for new Google open source project 2020-12-11 23:37:59 -08:00
README.md readme: remove pointer to closed issue about native backend 2023-03-24 11:42:41 -07:00
rustfmt.toml rustfmt: set edition to 2021 2022-06-09 14:41:11 -07:00
SECURITY.md docs: add a SECURITY.md 2023-03-10 14:31:36 -08:00

Jujutsu VCS


Disclaimer

This is not a Google product. It is an experimental version-control system (VCS). I (Martin von Zweigbergk martinvonz@google.com) started it as a hobby project in late 2019. That said, this it is now my full-time project at Google. My presentation from Git Merge 2022 has information about Google's plans. See the slides or the recording.

Introduction

Jujutsu is a Git-compatible DVCS. It combines features from Git (data model, speed), Mercurial (anonymous branching, simple CLI free from "the index", revsets, powerful history-rewriting), and Pijul/Darcs (first-class conflicts), with features not found in most of them (working-copy-as-a-commit, undo functionality, automatic rebase, safe replication via rsync, Dropbox, or distributed file system).

The command-line tool is called jj for now because it's easy to type and easy to replace (rare in English). The project is called "Jujutsu" because it matches "jj".

If you have any questions, please join us on Discord Discord.

Features

Compatible with Git

Jujutsu has two backends. One of them is a Git backend (the other is a native one 1). This lets you use Jujutsu as an alternative interface to Git. The commits you create will look like regular Git commits. You can always switch back to Git. The Git support uses the libgit2 C library.

The working copy is automatically committed

Most Jujutsu commands automatically commit the working copy. This leads to a simpler and more powerful interface, since all commands work the same way on the working copy or any other commit. It also means that you can always check out a different commit without first explicitly committing the working copy changes (you can even check out a different commit while resolving merge conflicts).

Operations update the repo first, then possibly the working copy

The working copy is only updated at the end of an operation, after all other changes have already been recorded. This means that you can run any command (such as jj rebase) even if the working copy is dirty.

Entire repo is under version control

All operations you perform in the repo are recorded, along with a snapshot of the repo state after the operation. This means that you can easily revert to an earlier repo state, or to simply undo a particular operation (which does not necessarily have to be the most recent operation).

Conflicts can be recorded in commits

If an operation results in conflicts, information about those conflicts will be recorded in the commit(s). The operation will succeed. You can then resolve the conflicts later. One consequence of this design is that there's no need to continue interrupted operations. Instead, you get a single workflow for resolving conflicts, regardless of which command caused them. This design also lets Jujutsu rebase merge commits correctly (unlike both Git and Mercurial).

Basic conflict resolution:

Juggling conflicts:

Automatic rebase

Whenever you modify a commit, any descendants of the old commit will be rebased onto the new commit. Thanks to the conflict design described above, that can be done even if there are conflicts. Branches pointing to rebased commits will be updated. So will the working copy if it points to a rebased commit.

Comprehensive support for rewriting history

Besides the usual rebase command, there's jj describe for editing the description (commit message) of an arbitrary commit. There's also jj diffedit, which lets you edit the changes in a commit without checking it out. To split a commit into two, use jj split. You can even move part of the changes in a commit to any other commit using jj move.

Status

The tool is quite feature-complete, but some important features like (the equivalent of) git blame are not yet supported. There are also several performance bugs. It's also likely that workflows and setups different from what the core developers use are not well supported.

I (Martin von Zweigbergk) have almost exclusively used jj to develop the project itself since early January 2021. I haven't had to re-clone from source (I don't think I've even had to restore from backup).

There will be changes to workflows and backward-incompatible changes to the on-disk formats before version 1.0.0. Even the binary's name may change (i.e. away from jj). For any format changes, we'll try to implement transparent upgrades (as we've done with recent changes), or provide upgrade commands or scripts if requested.

Installation

See below for how to build from source. There are also pre-built binaries for Windows, Mac, or Linux (musl).

If you're installing from source, you need to use Rust version 1.61 or higher, or you will get a cryptic message like this:

error: failed to select a version for the requirement `libgit2-sys = "=0.14.0"``
candidate versions found which didn't match: 0.13.2+1.4.2, 0.13.1+1.4.2, 0.13.0+1.4.1, ...

Linux

On most distributions, you'll need to build from source using cargo directly.

Build using cargo

First make sure that you have the libssl-dev, openssl, and pkg-config packages installed by running something like this:

sudo apt-get install libssl-dev openssl pkg-config

Now run:

cargo install --git https://github.com/martinvonz/jj.git --locked --bin jj jujutsu

Nix OS

If you're on Nix OS you can use the flake for this repository. For example, if you want to run jj loaded from the flake, use:

nix run 'github:martinvonz/jj'

You can also add this flake url to your system input flakes. Or you can install the flake to your user profile:

nix profile install 'github:martinvonz/jj'

Homebrew

If you use linuxbrew, you can run:

brew install jj

Mac

Homebrew

If you use Homebrew, you can run:

brew install jj

MacPorts

You can also install jj via MacPorts (as the jujutsu port):

sudo port install jujutsu

(port page)

From Source

You may need to run some or all of these:

xcode-select --install
brew install openssl
brew install pkg-config
export PKG_CONFIG_PATH="$(brew --prefix)/opt/openssl@3/lib/pkgconfig"

Now run:

cargo install --git https://github.com/martinvonz/jj.git --locked --bin jj jujutsu

Windows

Run:

cargo install --git https://github.com/martinvonz/jj.git --locked --bin jj jujutsu --features vendored-openssl

Initial configuration

You may want to configure your name and email so commits are made in your name. Create a file at ~/.jjconfig.toml and make it look something like this:

$ cat ~/.jjconfig.toml
[user]
name = "Martin von Zweigbergk"
email = "martinvonz@google.com"

Command-line completion

To set up command-line completion, source the output of jj support completion --bash/--zsh/--fish. Exactly how to source it depends on your shell.

Bash

source <(jj support completion)  # --bash is the default

Zsh

autoload -U compinit
compinit
source <(jj support completion --zsh)

Fish

jj support completion --fish | source

Xonsh

source-bash $(jj support completion)

Getting started

The best way to get started is probably to go through the tutorial. Also see the Git comparison, which includes a table of jj vs. git commands.

There are several tools trying to solve similar problems as Jujutsu. See related work for details.


  1. At this time, there's practically no reason to use the native backend. The backend exists mainly to make sure that it's possible to eventually add functionality that cannot easily be added to the Git backend. ↩︎