> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clawker.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# clawker worktree remove

## clawker worktree remove

Remove one or more worktrees

### Synopsis

Removes worktrees by their branch name.

This removes both the git worktree metadata and the filesystem directory.
The branch itself is preserved unless --delete-branch is specified.

```
clawker worktree remove BRANCH [BRANCH...] [flags]
```

### Aliases

`remove`, `rm`

### Examples

```
  # Remove a worktree
  clawker worktree remove feat-42

  # Remove multiple worktrees
  clawker worktree rm feat-42 feat-43

  # Remove worktree and delete the branch
  clawker worktree remove --delete-branch feat-42
```

### Options

```
      --delete-branch   Also delete the branch after removing the worktree
  -h, --help            help for remove
```

### Options inherited from parent commands

```
  -D, --debug   Enable debug logging
```

### See also

* [clawker worktree](clawker_worktree) - Manage git worktrees for isolated branch development
