Skip to content

delete

Delete a bookmark

Usage

Terminal window
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 confirmation
bookmark delete myproject
# Force delete without confirmation
bookmark delete myproject --force

Flags

FlagTypeDescription
-c, --configstringconfig file path
-f, --forceboolskip confirmation

Source

See delete_cmd.go for implementation details.