just playing with tangled
at ig/vimdiffwarn 25 lines 1.4 kB view raw view rendered
1# Related work 2 3Similar tools: 4 5* [git-branchless](https://github.com/arxanas/git-branchless): Helps you use a 6 branchless workflow in your Git repo. Supports anonymous branching, undo, 7 and faster rebase (`git move`). Under heavy development and quickly gaining 8 new features. 9* [Sapling](https://sapling-scm.com/): A heavily modified fork of 10 [Mercurial](https://www.mercurial-scm.org/) developed and used at Meta. It 11 is compatible with Git, has undo functionality, and 12 [a graphical interface](https://sapling-scm.com/docs/addons/isl). 13 See [how it is different from Jujutsu](sapling-comparison.md). 14* [GitUp](https://gitup.co/): A Mac-only GUI for Git. Like Jujutsu, supports 15 undo and restoring the repo to an earlier snapshot. Backed by its 16 [GitUpKit library](https://github.com/git-up/GitUp#gitupkit). 17* [Gitless](https://gitless.com/): Another attempt at providing a simpler 18 interface for Git. Like Jujutsu, does not have an "index"/"staging area" 19 concept. Also doesn't move the working-copy changes between branches (which 20 we do simply as a consequence of making the working copy a commit). 21* [Breezy](https://www.breezy-vcs.org/): Another VCS that's similar in that it 22 has multiple storage backends, including its own format as well as .git 23 support. 24* [Sturdy](https://getsturdy.com/): A Git backed GUI that eliminates local and 25 remote as well as the idea of an "index"/"staging area".