Skip to content

Logging out & uninstalling

Open in ChatGPT ↗
Ask ChatGPT about this page
Open in Claude ↗
Ask Claude about this page
Copied!

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

You can log out of Warp through:

  • Settings > Account, with the “Log out” button
  • Command Palette, with the “Log out” item.
  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.

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

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

Terminal window
# Remove Warp settings defaults
defaults delete dev.warp.Warp-Stable
# Remove Warp logs
sudo rm -r $HOME/Library/Logs/warp.log
# Remove Warp database, Codebase Context, and MCP logs
sudo rm -r "$HOME/Library/Group Containers/2BBY89MBSN.dev.warp/Library/Application Support/dev.warp.Warp-Stable"
# Remove Warp user files, themes, and launch configurations
sudo 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:

Terminal window
# Remove Warp Preview settings defaults
defaults delete dev.warp.Warp-Preview
# Remove Warp Preview logs
sudo rm -r $HOME/Library/Logs/warp_preview.log
# Remove Warp Preview database, Codebase Context, and MCP logs
sudo 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