1 repo
Foundational structures used for tracking state changes and repository operations.
Distinguishing note: Uses a directed graph structure specifically for repository operation logging and undo capabilities.
Explore 1 awesome GitHub repository matching development tools & productivity · Data Structures. Refine with filters or upvote what's useful.
Jujutsu is a distributed version control engine designed to manage project history through mutable commits and a persistent operation log. By treating the working directory as a mutable commit, it eliminates the need for manual staging areas, allowing users to modify repository history directly without checking out specific branches. The system maintains full compatibility with existing remote repositories, ensuring that local workflows remain interoperable with standard version control ecosystems. A defining characteristic of the project is its conflict-aware architecture, which treats merge
Records every repository state change as a directed graph to enable full undo capabilities and concurrent branch management.