Remove the confirmation of worktree creation (#144)

This commit is contained in:
Sam Xie
2026-02-08 14:43:47 -08:00
committed by GitHub
parent 0c404f9544
commit c40eb2eaa2

View File

@@ -91,14 +91,6 @@ create_worktree() {
echo -e "${BLUE}Creating worktree: $branch_name${NC}"
echo " From: $from_branch"
echo " Path: $worktree_path"
echo ""
echo "Proceed? (y/n)"
read -r response
if [[ "$response" != "y" ]]; then
echo -e "${YELLOW}Cancelled${NC}"
return
fi
# Update main branch
echo -e "${BLUE}Updating $from_branch...${NC}"