> For the complete documentation index, see [llms.txt](/llms.txt).
> Markdown versions of each page are available by appending .md to any URL.

# Logging out & uninstalling

How to log out from Warp, and how to uninstall Warp.

## Logging out

You can log out of Warp through:

-   **Settings** > **Account**, with the “Log out” button
-   [Command Palette](/terminal/command-palette/), with the “Log out” item.

### Known issues:

1.  When you log out, you will lose all running processes and all unsaved objects.
2.  When you log out and log in to Warp with another account, the following preferences will be preserved from the original account:
    1.  Theme
    2.  Keybindings
    3.  Settings (e.g. autosuggestion, notifications, font size, welcome tips status)
3.  Whenever you log in to Warp, you will receive the onboarding survey.

## Uninstalling Warp

Removing Warp from your computer involves uninstalling Warp and then removing any files or data.

Note

If you’re using Warp Preview, replace “Warp-Stable” with “Warp-Preview” in the commands below (e.g., `defaults delete dev.warp.Warp-Preview`).

-   [macOS](#tab-panel-704)
-   [Windows](#tab-panel-705)
-   [Linux](#tab-panel-706)

**Uninstalling Warp by dmg**

-   Remove Warp with `sudo rm -r /Applications/Warp.app`
-   Open **Finder** > **Applications**, right-click on Warp, and select “Move to Trash”

**Uninstalling Warp by Homebrew**

-   Remove Warp with `brew uninstall warp`

**Removing Warp settings, files, logs, and database**

```
# Remove Warp settings defaultsdefaults delete dev.warp.Warp-Stable# Remove Warp logssudo rm -r $HOME/Library/Logs/warp.log# Remove Warp database, Codebase Context, and MCP logssudo rm -r "$HOME/Library/Group Containers/2BBY89MBSN.dev.warp/Library/Application Support/dev.warp.Warp-Stable"# Remove Warp user files, themes, and launch configurationssudo rm -r $HOME/.warp# Note: Removing $HOME/.warp will delete files for both Stable and Preview.# If you wish to delete it all, then: sudo rm -r $HOME/.warp
```

**For Warp Preview users:**

```
# Remove Warp Preview settings defaultsdefaults delete dev.warp.Warp-Preview# Remove Warp Preview logssudo rm -r $HOME/Library/Logs/warp_preview.log# Remove Warp Preview database, Codebase Context, and MCP logssudo rm -r "$HOME/Library/Group Containers/2BBY89MBSN.dev.warp/Library/Application Support/dev.warp.Warp-Preview"# Note: Removing $HOME/.warp will delete files for both Preview and Stable.# If you wish to delete it all, then: sudo rm -r $HOME/.warp
```

**Uninstalling Warp by WinGet**

```
winget uninstall Warp.Warp
```

**Uninstalling Warp installed by Installer**

-   Search for “Installed apps” section of the Control Panel.
-   Search for and Uninstall the Warp application

**Removing Warp settings, files, logs, and database**

```
# Remove Warp settings in the Windows RegistryRemove-Item -Path "HKCU:\Software\Warp.dev\Warp" -Recurse -Force# Remove Warp settings, keybindings, logs, database, Codebase Context, and MCP logsRemove-Item -Path "$env:LOCALAPPDATA\warp\Warp" -Recurse -Force# Remove Warp themes, tab configs, workflows, and launch configurationsRemove-Item -Path "$env:APPDATA\warp\Warp" -Recurse -Force# Remove MCP server config and bundled skills (shared across Stable and Preview)Remove-Item -Path "$env:USERPROFILE\.warp" -Recurse -Force
```

**For Warp Preview users:**

```
# Remove Warp Preview settings in the Windows RegistryRemove-Item -Path "HKCU:\Software\Warp.dev\WarpPreview" -Recurse -Force# Remove Warp Preview settings, keybindings, logs, database, Codebase Context, and MCP logsRemove-Item -Path "$env:LOCALAPPDATA\warp\WarpPreview" -Recurse -Force# Remove Warp Preview themes, tab configs, workflows, and launch configurationsRemove-Item -Path "$env:APPDATA\warp\WarpPreview" -Recurse -Force# Note: Removing $env:USERPROFILE\.warp also removes Stable's MCP config and skills.
```

**Uninstalling Warp by package manager**

```
# apt uninstallsudo apt remove warp-terminal# dnf uninstallsudo dnf remove warp-terminal# zypper uninstallsudo zypper remove warp-terminal# pacman uninstallsudo pacman -R warp-terminal
```

-   Uninstall Warp using the same package manager that you used to [install](/getting-started/quickstart/installation-and-setup/) it.

**Removing Warp settings, files, logs, and database**

```
# Remove Warp settings and keybindings filesrm -r ${XDG_CONFIG_HOME:-$HOME/.config}/warp-terminal# Remove Warp logs, database, Codebase Context, and MCP logsrm -r ${XDG_STATE_HOME:-$HOME/.local/state}/warp-terminal# Remove Warp themes, tab configs, workflows, and launch configurationsrm -r ${XDG_DATA_HOME:-$HOME/.local/share}/warp-terminal# Remove MCP server config and bundled skills (shared across Stable and Preview)rm -r $HOME/.warp
```

**For Warp Preview users:**

```
# apt uninstallsudo apt remove warp-terminal-preview# dnf uninstallsudo dnf remove warp-terminal-preview# zypper uninstallsudo zypper remove warp-terminal-preview# pacman uninstallsudo pacman -R warp-terminal-preview
```

-   Uninstall Warp Preview using the same package manager that you used to install it.

```
# Remove Warp Preview settings and keybindings filesrm -r ${XDG_CONFIG_HOME:-$HOME/.config}/warp-terminal-preview# Remove Warp Preview logs, database, Codebase Context, and MCP logsrm -r ${XDG_STATE_HOME:-$HOME/.local/state}/warp-terminal-preview# Remove Warp Preview themes, tab configs, workflows, and launch configurationsrm -r ${XDG_DATA_HOME:-$HOME/.local/share}/warp-terminal-preview# Note: Removing $HOME/.warp also removes Stable's MCP config and skills.
```
