delete
Delete a bookmark
Usage
bookmark delete <alias>Description
newDeleteCmd creates the delete command for removing bookmarks.
The delete command removes a bookmark by its alias. By default, it will prompt for confirmation before deleting.
Flags:
- —force/-f: Skip confirmation prompt and delete immediately
Examples:
# Delete with confirmationbookmark delete myproject
# Force delete without confirmationbookmark delete myproject --forceFlags
| Flag | Type | Description |
|---|---|---|
-c, --config | string | config file path |
-f, --force | bool | skip confirmation |
Source
See delete_cmd.go for implementation details.