mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-12 07:14:38 +00:00
fb32a417ee
Sturdy came up a while ago on lobste.rs when [jj was being discussed](https://lobste.rs/s/47zztj/jujutsu_dvcs). I'm not sure if I described it well, or if it's something you want as related-work, especially since the sturdy founder claims to be solving different problems in the very thread. But it does seem to be doing some similar things to removing the idea of an index/staging area.
22 lines
1.2 KiB
Markdown
22 lines
1.2 KiB
Markdown
# 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.
|
|
* [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"
|
|
concept. Also doesn't move the working copy changes between branches (which
|
|
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.
|
|
* [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.
|
|
* [Sturdy](https://getsturdy.com/): A Git backed GUI that eliminates local and
|
|
remote as well as the idea of an "index"/"staging area".
|