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

# basecut logout

> Log out of your Basecut account

Remove stored authentication credentials from your local machine for the specified profile. This does not revoke the session on the server, but clears the local access token.

## Usage

```bash theme={null}
basecut logout [flags]
```

***

## Flags

### Optional

| Flag               | Default   | Description                                         |
| ------------------ | --------- | --------------------------------------------------- |
| `--profile <name>` | `default` | The name of the profile to log out from.            |
| `--all`            | `false`   | Remove ALL stored profiles (confirmation required). |

***

## Examples

### Logout Default Profile

```bash theme={null}
basecut logout
```

### Logout All Profiles

```bash theme={null}
basecut logout --all
```

***

## Success Output

```bash theme={null}
✓ Logged out from profile 'default'
```

***

## Next Steps

<CardGroup cols={2}>
  <Card title="Log Back In" icon="right-to-bracket" href="/cli-reference/login">
    Authenticate again with your account
  </Card>

  <Card title="Check Status" icon="user" href="/cli-reference/whoami">
    Verify no credentials remain
  </Card>
</CardGroup>
