Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions skills/using-git-worktrees/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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="<chosen-location>"
# Use BRANCH_NAME based on the task (e.g. "feat-add-login")
BRANCH_NAME="<chosen-branch-name>"

# Determine path based on chosen location
path="$LOCATION/$BRANCH_NAME"

Expand Down