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

# bitbucket:credentials:create

> Save a Bitbucket app password under the user config.

Save a Bitbucket username and app password for commands that interact with Bitbucket. The username and app password are written as block-style YAML to `~/.talos/credentials/bitbucket.yml` under the `default` profile.

Create an app password (with the **Pipelines: Read and write** permission) at [bitbucket.org/account/settings/app-passwords](https://bitbucket.org/account/settings/app-passwords/).

## Usage

```bash theme={null}
talos bitbucket:credentials:create [options]
```

## Examples

Run with no flags to be prompted for the username and app password (the password is hidden):

```bash theme={null}
talos bitbucket:credentials:create
```

Provide everything non-interactively:

```bash theme={null}
talos bitbucket:credentials:create --username=ooneex --token=ATBBxxxxxxxx
```

## Options

| Option       | Description                                                       | Default             |
| ------------ | ----------------------------------------------------------------- | ------------------- |
| `--username` | Bitbucket username the app password belongs to.                   | Prompted if omitted |
| `--token`    | Bitbucket app password to store.                                  | Prompted if omitted |
| `--silent`   | Suppress the instructional message and the saved-to confirmation. | `false`             |
