fix: change git clone --bare to git clone in create_worktree (fixes #57) #59
Reference in New Issue
Block a user
Delete Branch "fix/issue-57-worktree-creation"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Changed
git clone --baretogit cloneincreate_worktree()function at line 211.Bug:
git clone --barecreated bare repos with no working directory, making them useless for development and breaking parallel agent workflow.Fix: Use regular
git cloneto create proper worktrees with working directories.Fixes #57
lgtm