summaryrefslogtreecommitdiff
path: root/makima/src/daemon/worktree/mod.rs
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-01-11 05:52:14 +0000
committersoryu <soryu@soryu.co>2026-01-15 00:21:16 +0000
commit87044a747b47bd83249d61a45842c7f7b2eae56d (patch)
treeef2000ce79ffcc2723ef841acef5aa1deb1d5378 /makima/src/daemon/worktree/mod.rs
parent077820c4167c168072d217a1b01df840463a12a8 (diff)
downloadsoryu-87044a747b47bd83249d61a45842c7f7b2eae56d.tar.gz
soryu-87044a747b47bd83249d61a45842c7f7b2eae56d.zip
Contract system
Diffstat (limited to 'makima/src/daemon/worktree/mod.rs')
-rw-r--r--makima/src/daemon/worktree/mod.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/makima/src/daemon/worktree/mod.rs b/makima/src/daemon/worktree/mod.rs
new file mode 100644
index 0000000..eb9f031
--- /dev/null
+++ b/makima/src/daemon/worktree/mod.rs
@@ -0,0 +1,11 @@
+//! Git worktree management for task isolation.
+//!
+//! Each task gets a unique git worktree with its own branch,
+//! providing isolation without the overhead of Docker containers.
+
+mod manager;
+
+pub use manager::{
+ expand_tilde, is_new_repo_request, sanitize_name, short_uuid, ConflictResolution, MergeState,
+ TaskBranchInfo, WorktreeError, WorktreeInfo, WorktreeManager,
+};