feat: Add Jujutsu support (#104) #148
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR introduces support for Jujutsu as a new VCS option in Claude Squad.
2
3 ### Changes
4 - VCS Abstraction: Introduced a
VCS
interface to abstract version control operations, allowing for easy integration of new VCS types.5 - GitWorktree Implementation: The existing Git functionality has been refactored to implement the new
VCS
interface.6 - JujutsuVCS Implementation: Implemented basic Jujutsu operations (diff, commit, push, branch management) using
jj
commands.7 - Configuration: Added a
VCSType
field to the application configuration, allowing users to select their preferred VCS.8 - Application Integration: Modified core application logic to use the
VCS
interface, ensuring compatibility with different VCS types.9 - Test Updates: Updated existing tests and added new ones to cover the VCS abstraction and Jujutsu integration.
10
11 This allows users to leverage Jujutsu's capabilities within the existing Claude Squad workflow, expanding the tool's versatility.
12
13 Closes #104