## logout Use the `logout` command to remove all credentials that connect the CLI to your Stripe account. By default, credentials will be removed for the default project. Alternatively, you can remove credentials for a specific project or all known projects listed in your configuration file. > It will take about 24 hours from when you log out for your device's name to stop showing up on the account's dashboard. **Command:** `stripe logout` ### Flags - `-a, --all` Remove credentials for all projects listed in your configuration. - `--project-name=` Remove the credentials tied to a specific project in your configuration. ### Examples **Basic logout** ```sh stripe logout ``` **Log out of a specific project** ```sh stripe logout --project-name=rocket-rides ``` **Log out of all projects** ```sh stripe logout --all ```