HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

jj tag list — List tags in a `jj` repository. See also: `jj tag delete`, `jj tag set`. More information: <https://

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandtagsjj tag listclilistrepositoryseealso

Problem

How to use the jj tag list command: List tags in a jj repository. See also: jj tag delete, jj tag set. More information: <https://docs.jj-vcs.dev/latest/cli-reference/#jj-tag-list>.

Solution

jj tag list — List tags in a jj repository. See also: jj tag delete, jj tag set. More information: <https://docs.jj-vcs.dev/latest/cli-reference/#jj-tag-list>.

List all tags:
jj tag {{[l|list]}}


List tags matching a pattern:
jj tag {{[l|list]}} "{{pattern}}"


List tags matching a substring pattern:
jj tag {{[l|list]}} "{{substring:release}}"


List tags sorted by committer date (newest first):
jj tag {{[l|list]}} --sort committer-date-


List tags sorted by name in descending order:
jj tag {{[l|list]}} --sort name-


List tags with a custom template:
jj tag {{[l|list]}} {{[-T|--template]}} "{{template}}"

Code Snippets

List all tags

jj tag {{[l|list]}}

List tags matching a pattern

jj tag {{[l|list]}} "{{pattern}}"

List tags matching a substring pattern

jj tag {{[l|list]}} "{{substring:release}}"

List tags sorted by committer date (newest first)

jj tag {{[l|list]}} --sort committer-date-

List tags sorted by name in descending order

jj tag {{[l|list]}} --sort name-

Context

tldr-pages: common/jj tag list

Revisions (0)

No revisions yet.