mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-25 00:36:30 +00:00
1.2 KiB
1.2 KiB
Related work
Similar tools:
- 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: A Mac-only GUI for Git. Like Jujutsu, supports undo and restoring the repo to an earlier snapshot. Backed by its GitUpKit library.
- Gitless: 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: Architecturally quite different from Jujutsu, but its "first-class conflicts" feature seems quite similar to ours.
- Breezy: Another VCS that's similar in that it has multiple storage backends, including its own format as well as .git support.
- Sturdy: A Git backed GUI that eliminates local and remote as well as the idea of an "index"/"staging area".