diff --git a/skills/using-git-worktrees/SKILL.md b/skills/using-git-worktrees/SKILL.md index 212c56926e..e204106af7 100644 --- a/skills/using-git-worktrees/SKILL.md +++ b/skills/using-git-worktrees/SKILL.md @@ -90,6 +90,11 @@ git check-ignore -q .worktrees 2>/dev/null || git check-ignore -q worktrees 2>/d #### Create the Worktree ```bash +# Use the LOCATION you chose above (e.g. ".worktrees" or a project-specific path) +LOCATION="" +# Use BRANCH_NAME based on the task (e.g. "feat-add-login") +BRANCH_NAME="" + # Determine path based on chosen location path="$LOCATION/$BRANCH_NAME"