DDEV unlist command
August 7, 2025 ยท AI Conversations
User
ddev unlist project
Assistant
The command `ddev unlist` is used to remove a project from DDEV's list of known projects without deleting the actual project directory.
To unlist a specific project, you can use:
ddev stop [project-name] # Optional: stops the project if it's running
ddev unlist [project-name]
For example:
ddev unlist my-laravel-site
This will:
– Remove the project entry from `~/.ddev/global_config.yaml`
– Not delete any files from the project folder
– Allow you to re-import or re-add the project later with `ddev start`
Let me know if you want to fully remove the project including its files and databases.