2021-10-20 22:27:33 +00:00
|
|
|
# Related work
|
|
|
|
|
|
|
|
Similar tools:
|
|
|
|
|
|
|
|
* [git-branchless](https://github.com/arxanas/git-branchless): Helps you use a
|
|
|
|
branchless workflow in your Git repo. Supports anonymous branching, undo,
|
|
|
|
and faster rebase (`git move`). Under heavy development and quickly gaining
|
|
|
|
new features.
|
2023-04-13 16:09:50 +00:00
|
|
|
* [Sapling](https://sapling-scm.com/): A heavily modified fork of
|
|
|
|
[Mercurial](https://www.mercurial-scm.org/) developed and used at Meta. It
|
|
|
|
is compatible with Git, has undo functionality, and
|
|
|
|
[a graphical interface](https://sapling-scm.com/docs/addons/isl).
|
2021-10-20 22:27:33 +00:00
|
|
|
* [GitUp](https://gitup.co/): A Mac-only GUI for Git. Like Jujutsu, supports
|
|
|
|
undo and restoring the repo to an earlier snapshot. Backed by its
|
|
|
|
[GitUpKit library](https://github.com/git-up/GitUp#gitupkit).
|
|
|
|
* [Gitless](https://gitless.com/): Another attempt at providing a simpler
|
|
|
|
interface for Git. Like Jujutsu, does not have an "index"/"staging area"
|
2022-08-25 23:34:18 +00:00
|
|
|
concept. Also doesn't move the working-copy changes between branches (which
|
2021-10-20 22:27:33 +00:00
|
|
|
we do simply as a consequence of making the working copy a commit).
|
|
|
|
* [Pijul](https://pijul.org/): Architecturally quite different from Jujutsu,
|
|
|
|
but its "first-class conflicts" feature seems quite similar to ours.
|
2021-11-04 15:25:25 +00:00
|
|
|
* [Breezy](https://www.breezy-vcs.org/): Another VCS that's similar in that it
|
|
|
|
has multiple storage backends, including its own format as well as .git
|
|
|
|
support.
|
2022-07-06 01:21:09 +00:00
|
|
|
* [Sturdy](https://getsturdy.com/): A Git backed GUI that eliminates local and
|
|
|
|
remote as well as the idea of an "index"/"staging area".
|