mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
31 lines
643 B
Plaintext
31 lines
643 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# jj tag delete
|
|
|
|
> Delete tags in a `jj` repository.
|
|
> See also: `jj tag list`, `jj tag set`.
|
|
> More information: <https://docs.jj-vcs.dev/latest/cli-reference/#jj-tag-delete>.
|
|
|
|
- Delete a tag:
|
|
|
|
`jj tag {{[d|delete]}} {{tag_name}}`
|
|
|
|
- Delete multiple tags:
|
|
|
|
`jj tag {{[d|delete]}} {{tag1 tag2 ...}}`
|
|
|
|
- Delete tags matching a glob pattern:
|
|
|
|
`jj tag {{[d|delete]}} "{{glob:v1.*}}"`
|
|
|
|
- Delete tags matching a substring pattern:
|
|
|
|
`jj tag {{[d|delete]}} "{{substring:release}}"`
|
|
|
|
- Delete a tag by exact name:
|
|
|
|
`jj tag {{[d|delete]}} "{{exact:v1.0.0}}"`
|