2023-10-07 21:13:45 +00:00
|
|
|
<div class="title-block" style="text-align: center;" align="center">
|
2020-12-12 07:37:25 +00:00
|
|
|
|
2023-10-07 21:13:45 +00:00
|
|
|
# Jujutsu—a version control system
|
|
|
|
|
|
|
|
![](https://img.shields.io/github/v/release/martinvonz/jj)
|
|
|
|
![](https://img.shields.io/github/release-date/martinvonz/jj)
|
2023-10-07 21:13:36 +00:00
|
|
|
<br/>
|
2023-12-21 22:12:16 +00:00
|
|
|
![](https://img.shields.io/github/license/martinvonz/jj)
|
|
|
|
[![Discord](https://img.shields.io/discord/968932220549103686.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/dkmfj3aGQN)
|
2024-11-10 23:56:47 +00:00
|
|
|
[![IRC](https://img.shields.io/badge/irc-%23jujutsu-blue.svg)](https://web.libera.chat/?channel=#jujutsu)
|
2022-11-30 16:43:13 +00:00
|
|
|
|
2023-10-07 21:13:45 +00:00
|
|
|
**[Homepage] • **
|
|
|
|
**[Installation] • **
|
2024-08-19 05:58:10 +00:00
|
|
|
**[Getting Started] • **
|
2024-11-15 23:35:13 +00:00
|
|
|
**[Development Roadmap] • **
|
|
|
|
**[Contributing](#contributing)**
|
2020-12-12 07:37:25 +00:00
|
|
|
|
2023-10-07 21:13:45 +00:00
|
|
|
[Homepage]: https://martinvonz.github.io/jj
|
|
|
|
[Installation]: https://martinvonz.github.io/jj/latest/install-and-setup
|
2023-12-21 22:12:16 +00:00
|
|
|
[Getting Started]: https://martinvonz.github.io/jj/latest/tutorial
|
2024-09-05 01:53:12 +00:00
|
|
|
[Development Roadmap]: https://martinvonz.github.io/jj/latest/roadmap
|
2020-12-12 07:37:25 +00:00
|
|
|
|
2023-10-07 21:13:45 +00:00
|
|
|
</div>
|
2020-12-12 07:37:25 +00:00
|
|
|
|
2020-12-12 08:12:04 +00:00
|
|
|
## Introduction
|
2020-12-12 07:37:25 +00:00
|
|
|
|
2023-10-29 16:15:01 +00:00
|
|
|
Jujutsu is a powerful [version control system](https://en.wikipedia.org/wiki/Version_control)
|
|
|
|
for software projects. You use it to get a copy of your code, track changes
|
|
|
|
to the code, and finally publish those changes for others to see and use.
|
|
|
|
It is designed from the ground up to be easy to use—whether you're new or
|
|
|
|
experienced, working on brand new projects alone, or large scale software
|
|
|
|
projects with large histories and teams.
|
|
|
|
|
|
|
|
Jujutsu is unlike most other systems, because internally it abstracts the user
|
|
|
|
interface and version control algorithms from the *storage systems* used to
|
|
|
|
serve your content. This allows it to serve as a VCS with many possible physical
|
|
|
|
backends, that may have their own data or networking models—like [Mercurial] or
|
|
|
|
[Breezy], or hybrid systems like Google's cloud-based design, [Piper/CitC].
|
|
|
|
|
|
|
|
[Mercurial]: https://www.mercurial-scm.org/
|
|
|
|
[Breezy]: https://www.breezy-vcs.org/
|
|
|
|
[Piper/CitC]: https://youtu.be/W71BTkUbdqE?t=645
|
|
|
|
|
|
|
|
Today, we use Git repositories as a storage layer to serve and track content,
|
|
|
|
making it **compatible with many of your favorite Git-based tools, right now!**
|
|
|
|
All core developers use Jujutsu to develop Jujutsu, right here on GitHub. But it
|
|
|
|
should hopefully work with your favorite Git forges, too.
|
|
|
|
|
|
|
|
We combine many distinct design choices and concepts from other version control
|
|
|
|
systems into a single tool. Some of those sources of inspiration include:
|
|
|
|
|
|
|
|
- **Git**: We make an effort to [be fast][perf]—with a snappy UX, efficient
|
|
|
|
algorithms, correct data structures, and good-old-fashioned attention to
|
|
|
|
detail. The default storage backend uses Git repositories for "physical
|
|
|
|
storage", for wide interoperability and ease of onboarding.
|
|
|
|
|
|
|
|
- **Mercurial & Sapling**: There are many Mercurial-inspired features, such as
|
|
|
|
the [revset] language to select commits. There is [no explicit index][no-index]
|
|
|
|
or staging area. Branches are "anonymous" like Mercurial, so you don't need
|
|
|
|
to make up a name for each small change. Primitives for rewriting history are
|
|
|
|
powerful and simple. Formatting output is done with a robust template language
|
|
|
|
that can be configured by the user.
|
|
|
|
|
2024-04-14 13:57:20 +00:00
|
|
|
- **Darcs**: Jujutsu keeps track of conflicts as [first-class
|
2023-11-23 21:24:27 +00:00
|
|
|
objects][conflicts] in its model; they are first-class in the same way commits
|
|
|
|
are, while alternatives like Git simply think of conflicts as textual diffs.
|
2024-04-14 13:57:20 +00:00
|
|
|
While not as rigorous as systems like Darcs (which is based on a formalized
|
|
|
|
theory of patches, as opposed to snapshots), the effect is that many forms of
|
|
|
|
conflict resolution can be performed and propagated automatically.
|
2023-10-29 16:15:01 +00:00
|
|
|
|
|
|
|
[perf]: https://github.com/martinvonz/jj/discussions/49
|
|
|
|
[revset]: https://martinvonz.github.io/jj/latest/revsets/
|
|
|
|
[no-index]: https://martinvonz.github.io/jj/latest/git-comparison/#the-index
|
|
|
|
[conflicts]: https://martinvonz.github.io/jj/latest/conflicts/
|
|
|
|
|
|
|
|
And it adds several innovative, useful features of its own:
|
|
|
|
|
|
|
|
- **Working-copy-as-a-commit**: Changes to files are [recorded automatically][wcc]
|
|
|
|
as normal commits, and amended on every subsequent change. This "snapshot"
|
|
|
|
design simplifies the user-facing data model (commits are the only visible
|
|
|
|
object), simplifies internal algorithms, and completely subsumes features like
|
|
|
|
Git's stashes or the index/staging-area.
|
|
|
|
|
|
|
|
- **Operation log & undo**: Jujutsu records every operation that is performed on the
|
|
|
|
repository, from commits, to pulls, to pushes. This makes debugging problems like
|
|
|
|
"what just happened?" or "how did I end up here?" easier, *especially* when
|
|
|
|
you're helping your coworker answer those questions about their repository!
|
|
|
|
And because everything is recorded, you can undo that mistake you just made
|
|
|
|
with ease. Version control has finally entered [the 1960s][undo-history]!
|
|
|
|
|
|
|
|
- **Automatic rebase and conflict resolution**: When you modify a commit, every
|
|
|
|
descendent is automatically rebased on top of the freshly-modified one. This
|
|
|
|
makes "patch-based" workflows a breeze. If you resolve a conflict in a commit,
|
|
|
|
the _resolution_ of that conflict is also propagated through descendants as
|
|
|
|
well. In effect, this is a completely transparent version of `git rebase
|
|
|
|
--update-refs` combined with `git rerere`, supported by design.
|
|
|
|
|
2024-02-08 22:49:39 +00:00
|
|
|
> [!WARNING]
|
|
|
|
> The following features are available for use, but experimental; they may have
|
|
|
|
> bugs, backwards incompatible storage changes, and user-interface changes!
|
2023-10-29 16:15:01 +00:00
|
|
|
|
|
|
|
- **Safe, concurrent replication**: Have you ever wanted to store your version
|
|
|
|
controlled repositories inside a Dropbox folder? Or continuously backup
|
|
|
|
repositories to S3? No? Well, now you can!
|
|
|
|
|
|
|
|
The fundamental problem with using filesystems like Dropbox and backup tools
|
2024-02-04 15:25:58 +00:00
|
|
|
like `rsync` on your typical Git/Mercurial repositories is that they rely
|
2023-10-29 16:15:01 +00:00
|
|
|
on *local filesystem operations* being atomic, serialized, and non-concurrent
|
|
|
|
with respect to other reads and writes—which is _not_ true when operating on
|
|
|
|
distributed file systems, or when operations like concurrent file copies (for
|
|
|
|
backup) happen while lock files are being held.
|
|
|
|
|
|
|
|
Jujutsu is instead designed to be [safe under concurrent scenarios][conc-safety];
|
|
|
|
simply using rsync or Dropbox and then using that resulting repository
|
|
|
|
should never result in a repository in a *corrupt state*. The worst that
|
|
|
|
_should_ happen is that it will expose conflicts between the local and remote
|
|
|
|
state, leaving you to resolve them.
|
|
|
|
|
|
|
|
[wcc]: https://martinvonz.github.io/jj/latest/working-copy/
|
|
|
|
[undo-history]: https://en.wikipedia.org/wiki/Undo#History
|
|
|
|
[conc-safety]: https://martinvonz.github.io/jj/latest/technical/concurrency/
|
2020-12-12 07:37:25 +00:00
|
|
|
|
2020-12-12 08:12:04 +00:00
|
|
|
The command-line tool is called `jj` for now because it's easy to type and easy
|
2021-05-15 16:16:31 +00:00
|
|
|
to replace (rare in English). The project is called "Jujutsu" because it matches
|
2021-10-28 04:45:37 +00:00
|
|
|
"jj".
|
2020-12-12 07:37:25 +00:00
|
|
|
|
2023-10-07 21:13:45 +00:00
|
|
|
Jujutsu is relatively young, with lots of work to still be done. If you have any
|
|
|
|
questions, or want to talk about future plans, please join us on Discord
|
2024-11-10 23:56:47 +00:00
|
|
|
[![Discord](https://img.shields.io/discord/968932220549103686.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/dkmfj3aGQN),
|
|
|
|
start a [GitHub Discussion](https://github.com/martinvonz/jj/discussions), or
|
|
|
|
send an IRC message to [`#jujutsu` on Libera
|
|
|
|
Chat](https://web.libera.chat/?channel=#jujutsu). The developers monitor all of
|
|
|
|
these channels[^bridge].
|
|
|
|
|
|
|
|
[^bridge]: To be more precise, the `#jujutsu` Libera IRC channel is bridged to
|
|
|
|
one of the channels on jj's Discord. Some of the developers stay on Discord and
|
|
|
|
use the bridge to follow IRC.
|
2023-10-07 21:13:45 +00:00
|
|
|
|
|
|
|
### News and Updates 📣
|
|
|
|
|
2024-07-08 14:10:05 +00:00
|
|
|
- **Feb 2024**: Version 0.14 is released, which deprecates ["jj checkout" and "jj merge"](CHANGELOG.md#0140---2024-02-07),
|
2024-09-13 05:25:47 +00:00
|
|
|
as well as `jj init --git`, which is now just called `jj git init`.
|
2023-10-29 16:15:01 +00:00
|
|
|
- **Oct 2023**: Version 0.10.0 is released! Now includes a bundled merge and
|
|
|
|
diff editor for all platforms, "immutable revsets" to avoid accidentally
|
|
|
|
`edit`-ing the wrong revisions, and lots of polish.
|
2023-10-07 21:13:45 +00:00
|
|
|
- **Jan 2023**: Martin gave a presentation about Google's plans for Jujutsu at
|
2024-09-13 05:25:47 +00:00
|
|
|
Git Merge 2022!
|
2024-02-07 22:00:03 +00:00
|
|
|
See the [slides][merge-slides] or the [recording][merge-talk].
|
|
|
|
|
|
|
|
### Related Media
|
|
|
|
|
2024-03-18 19:35:21 +00:00
|
|
|
- **Mar 2024**: Chris Krycho started [a YouTube series about Jujutsu][krycho-yt].
|
2024-02-07 22:00:03 +00:00
|
|
|
- **Feb 2024**: Chris Krycho published an article about Jujutsu called [jj init][krycho]
|
2024-09-13 05:25:47 +00:00
|
|
|
and Steve Klabnik followed up with the [Jujutsu Tutorial][klabnik].
|
|
|
|
- **Jan 2024**: Jujutsu was featured in an LWN.net article called
|
2024-02-07 22:00:03 +00:00
|
|
|
[Jujutsu: a new, Git-compatible version control system][lwn].
|
2024-09-13 05:25:47 +00:00
|
|
|
- **Jan 2023**: Martin's Talk about Jujutsu at Git Merge 2022, [video][merge-talk]
|
2024-02-07 22:00:03 +00:00
|
|
|
and the associated [slides][merge-slides].
|
|
|
|
|
2024-07-08 14:10:05 +00:00
|
|
|
The wiki also contains a more extensive list of [media references][wiki-media].
|
|
|
|
|
2024-03-18 19:35:21 +00:00
|
|
|
[krycho-yt]: https://www.youtube.com/playlist?list=PLelyiwKWHHAq01Pvmpf6x7J0y-yQpmtxp
|
2024-02-07 22:00:03 +00:00
|
|
|
[krycho]: https://v5.chriskrycho.com/essays/jj-init/
|
2024-03-18 19:31:31 +00:00
|
|
|
[klabnik]: https://steveklabnik.github.io/jujutsu-tutorial/
|
2024-09-13 05:25:47 +00:00
|
|
|
[lwn]: https://lwn.net/Articles/958468/
|
2024-02-07 22:00:03 +00:00
|
|
|
[merge-talk]: https://www.youtube.com/watch?v=bx_LGilOuE4
|
2024-09-13 05:25:47 +00:00
|
|
|
[merge-slides]: https://docs.google.com/presentation/d/1F8j9_UOOSGUN9MvHxPZX_L4bQ9NMcYOp1isn17kTC_M/view
|
2024-07-08 14:10:05 +00:00
|
|
|
[wiki-media]: https://github.com/martinvonz/jj/wiki/Media
|
2023-08-13 07:31:20 +00:00
|
|
|
|
|
|
|
## Getting started
|
|
|
|
|
2023-10-29 16:15:01 +00:00
|
|
|
> [!IMPORTANT]
|
|
|
|
> Jujutsu is an **experimental version control system**. While Git compatibility
|
|
|
|
> is stable, and most developers use it daily for all their needs, there may
|
|
|
|
> still be work-in-progress features, suboptimal UX, and workflow gaps that make
|
|
|
|
> it unusable for your particular use.
|
|
|
|
|
2023-10-07 21:13:36 +00:00
|
|
|
Follow the [installation
|
|
|
|
instructions](https://martinvonz.github.io/jj/latest/install-and-setup) to
|
|
|
|
obtain and configure `jj`.
|
2023-08-13 07:31:20 +00:00
|
|
|
|
2023-10-07 21:13:36 +00:00
|
|
|
The best way to get started is probably to go through [the
|
|
|
|
tutorial](https://martinvonz.github.io/jj/latest/tutorial). Also see the [Git
|
|
|
|
comparison](https://martinvonz.github.io/jj/latest/git-comparison), which
|
2023-09-09 00:06:57 +00:00
|
|
|
includes a table of `jj` vs. `git` commands.
|
2023-08-13 07:31:20 +00:00
|
|
|
|
2023-10-07 21:13:36 +00:00
|
|
|
As you become more familiar with Jujutsu, the following resources may be helpful:
|
2023-09-09 00:20:03 +00:00
|
|
|
|
|
|
|
- The [FAQ](https://martinvonz.github.io/jj/latest/FAQ).
|
|
|
|
- The [Glossary](https://martinvonz.github.io/jj/latest/glossary).
|
|
|
|
- The `jj help` command (e.g. `jj help rebase`).
|
|
|
|
|
|
|
|
If you are using a **prerelease** version of `jj`, you would want to consult
|
|
|
|
[the docs for the prerelease (main branch)
|
|
|
|
version](https://martinvonz.github.io/jj/prerelease/). You can also get there
|
2023-10-07 21:13:36 +00:00
|
|
|
from the docs for the latest release by using the website's version switcher. The version switcher is visible in
|
|
|
|
the header of the website when you scroll to the top of any page.
|
|
|
|
|
2022-01-29 06:36:56 +00:00
|
|
|
## Features
|
2021-05-23 21:42:20 +00:00
|
|
|
|
2022-01-29 06:36:56 +00:00
|
|
|
### Compatible with Git
|
2022-02-27 22:00:46 +00:00
|
|
|
|
2023-10-29 16:15:01 +00:00
|
|
|
Jujutsu is designed so that the underlying data and storage model is abstract.
|
|
|
|
Today, it features two [backends]—one of them uses a Git repository for storage,
|
2024-09-05 02:41:56 +00:00
|
|
|
while the other is a native storage backend[^native-backend]. The Git backend
|
|
|
|
uses the [libgit2](https://libgit2.org/) C library and the
|
|
|
|
[gitoxide](https://github.com/Byron/gitoxide) Rust library.
|
2023-10-29 16:15:01 +00:00
|
|
|
|
|
|
|
[backends]: https://martinvonz.github.io/jj/latest/glossary#backend
|
2022-01-29 06:36:56 +00:00
|
|
|
|
2022-04-23 15:47:13 +00:00
|
|
|
[^native-backend]: At this time, there's practically no reason to use the native
|
2023-03-24 18:26:23 +00:00
|
|
|
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.
|
2022-03-05 16:42:35 +00:00
|
|
|
|
2023-10-29 16:15:01 +00:00
|
|
|
The Git backend is fully featured and maintained, and allows you to use Jujutsu
|
2024-08-08 05:36:01 +00:00
|
|
|
with any Git remote. The commits you create will look like regular Git commits.
|
|
|
|
You can fetch branches from a regular Git remote and push branches to the
|
|
|
|
remote. You can always switch back to Git.
|
2024-09-13 05:25:47 +00:00
|
|
|
|
2024-08-08 05:36:01 +00:00
|
|
|
Here is how you can explore a GitHub repository with `jj`.
|
2023-10-29 16:15:01 +00:00
|
|
|
|
2022-10-21 05:13:09 +00:00
|
|
|
<img src="demos/git_compat.png" />
|
2022-01-29 06:36:56 +00:00
|
|
|
|
2023-10-07 21:13:36 +00:00
|
|
|
You can even have a ["co-located" local
|
|
|
|
repository](https://martinvonz.github.io/jj/latest/git-compatibility#co-located-jujutsugit-repos)
|
2023-09-09 00:06:57 +00:00
|
|
|
where you can use both `jj` and `git` commands interchangeably.
|
2023-04-17 04:30:36 +00:00
|
|
|
|
2022-01-29 06:36:56 +00:00
|
|
|
### The working copy is automatically committed
|
|
|
|
|
2023-08-02 16:05:24 +00:00
|
|
|
Jujutsu uses a real commit to represent the working copy. Checking out a commit
|
|
|
|
results a new working-copy commit on top of the target commit. Almost all
|
|
|
|
commands automatically amend the working-copy commit.
|
|
|
|
|
|
|
|
The working-copy being a commit means that commands never fail because the
|
|
|
|
working copy is dirty (no "error: Your local changes to the following
|
|
|
|
files..."), and there is no need for `git stash`. Also, because the working copy
|
|
|
|
is a commit, commands work the same way on the working-copy commit as on any
|
|
|
|
other commit, so you can set the commit message before you're done with the
|
|
|
|
changes.
|
2022-01-29 06:36:56 +00:00
|
|
|
|
2022-10-21 05:13:09 +00:00
|
|
|
<img src="demos/working_copy.png" />
|
2022-01-29 06:36:56 +00:00
|
|
|
|
2023-06-20 09:31:27 +00:00
|
|
|
### The repo is the source of truth
|
2022-01-29 06:36:56 +00:00
|
|
|
|
2023-06-20 09:31:27 +00:00
|
|
|
With Jujutsu, the working copy plays a smaller role than with Git. Commands
|
2023-08-01 09:16:43 +00:00
|
|
|
snapshot the working copy before they start, then they update the repo, and then
|
2023-06-20 09:31:27 +00:00
|
|
|
the working copy is updated (if the working-copy commit was modified). Almost
|
|
|
|
all commands (even checkout!) operate on the commits in the repo, leaving the
|
|
|
|
common functionality of snapshotting and updating of the working copy to
|
|
|
|
centralized code. For example, `jj restore` (similar to `git restore`) can
|
|
|
|
restore from any commit and into any commit, and `jj describe` can set the
|
|
|
|
commit message of any commit (defaults to the working-copy commit).
|
2022-01-29 06:36:56 +00:00
|
|
|
|
|
|
|
### 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).
|
|
|
|
|
2022-10-21 05:13:09 +00:00
|
|
|
<img src="demos/operation_log.png" />
|
2022-01-29 06:36:56 +00:00
|
|
|
|
|
|
|
### Conflicts can be recorded in commits
|
|
|
|
|
2023-09-09 00:06:57 +00:00
|
|
|
If an operation results in
|
|
|
|
[conflicts](https://martinvonz.github.io/jj/latest/glossary#conflict),
|
|
|
|
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).
|
2022-01-29 06:36:56 +00:00
|
|
|
|
|
|
|
Basic conflict resolution:
|
2022-10-21 05:13:09 +00:00
|
|
|
|
|
|
|
<img src="demos/resolve_conflicts.png" />
|
2022-01-29 06:36:56 +00:00
|
|
|
|
|
|
|
Juggling conflicts:
|
2022-10-21 05:13:09 +00:00
|
|
|
|
|
|
|
<img src="demos/juggle_conflicts.png" />
|
2022-01-29 06:36:56 +00:00
|
|
|
|
|
|
|
### 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
|
2024-09-11 16:11:50 +00:00
|
|
|
done even if there are conflicts. Bookmarks pointing to rebased commits will be
|
2022-01-29 06:36:56 +00:00
|
|
|
updated. So will the working copy if it points to a rebased commit.
|
2021-05-23 21:42:20 +00:00
|
|
|
|
2022-01-29 06:47:18 +00:00
|
|
|
### Comprehensive support for rewriting history
|
2021-05-23 21:42:20 +00:00
|
|
|
|
2022-01-29 06:47:18 +00:00
|
|
|
Besides the usual rebase command, there's `jj describe` for editing the
|
2022-12-18 03:56:21 +00:00
|
|
|
description (commit message) of an arbitrary commit. There's also `jj diffedit`,
|
2023-10-07 21:13:36 +00:00
|
|
|
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
|
2024-03-11 04:24:13 +00:00
|
|
|
commit to any other commit using `jj squash -i --from X --into Y`.
|
2022-01-29 06:47:18 +00:00
|
|
|
|
|
|
|
## Status
|
2021-09-08 17:00:47 +00:00
|
|
|
|
2023-10-08 23:24:16 +00:00
|
|
|
The tool is fairly feature-complete, but some important features like (the
|
2023-10-07 21:13:36 +00:00
|
|
|
equivalent of) `git blame` are not yet supported. There
|
2023-10-29 16:15:01 +00:00
|
|
|
are also several performance bugs. It's likely that workflows and setups
|
|
|
|
different from what the core developers use are not well supported, e.g. there
|
|
|
|
is no native support for email-based workflows.
|
|
|
|
|
|
|
|
Today, all core developers use `jj` to work on `jj`. 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).
|
2021-10-28 04:45:37 +00:00
|
|
|
|
2023-10-07 21:13:36 +00:00
|
|
|
There *will* be changes to workflows and backward-incompatible changes to the
|
2021-10-28 04:45:37 +00:00
|
|
|
on-disk formats before version 1.0.0. Even the binary's name may change (i.e.
|
2022-10-24 06:29:28 +00:00
|
|
|
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
|
2021-10-28 04:45:37 +00:00
|
|
|
scripts if requested.
|
2021-09-08 17:00:47 +00:00
|
|
|
|
2021-10-20 22:27:33 +00:00
|
|
|
## Related work
|
|
|
|
|
|
|
|
There are several tools trying to solve similar problems as Jujutsu. See
|
2023-09-09 00:06:57 +00:00
|
|
|
[related work](https://martinvonz.github.io/jj/latest/related-work) for details.
|
2023-10-07 21:13:45 +00:00
|
|
|
|
|
|
|
## Contributing
|
|
|
|
|
|
|
|
We welcome outside contributions, and there's plenty of things to do, so
|
|
|
|
don't be shy. Please ask if you want a pointer on something you can help with,
|
|
|
|
and hopefully we can all figure something out.
|
|
|
|
|
|
|
|
We do have [a few policies and
|
|
|
|
suggestions](https://martinvonz.github.io/jj/prerelease/contributing/)
|
|
|
|
for contributors. The broad TL;DR:
|
|
|
|
|
|
|
|
- Bug reports are very welcome!
|
|
|
|
- Every commit that lands in the `main` branch is code reviewed.
|
|
|
|
- Please behave yourself, and obey the Community Guidelines.
|
|
|
|
- There **is** a mandatory CLA you must agree to. Importantly, it **does not**
|
|
|
|
transfer copyright ownership to Google or anyone else; it simply gives us the
|
|
|
|
right to safely redistribute and use your changes.
|
|
|
|
|
|
|
|
### Mandatory Google Disclaimer
|
|
|
|
|
|
|
|
I (Martin von Zweigbergk, <martinvonz@google.com>) started Jujutsu as a hobby
|
|
|
|
project in late 2019, and it has evolved into my full-time project at Google,
|
|
|
|
with several other Googlers (now) assisting development in various capacities.
|
|
|
|
That said, **this is not a Google product**.
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
Jujutsu is available as Open Source Software, under the Apache 2.0 license. See
|
|
|
|
[LICENSE](./LICENSE) for details about copyright and redistribution.
|