LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

jj-tag-list

displays all tags in the repository

TLDR

List all tags
$ jj tag list
copy
List tags matching a glob pattern
$ jj tag list "[v*]"
copy
List tags sorted by author date (descending)
$ jj tag list --sort author-date-
copy
List tags with a custom template
$ jj tag list -T '[name ++ "\n"]'
copy

SYNOPSIS

jj tag list [options] [pattern]

DESCRIPTION

jj tag list displays all tags in the repository. Optionally filter by a glob pattern. Shows the tag name and the commit it references. Multiple sort keys can be specified, with the first key being the most significant. Default sort order can be configured via `ui.tag-list-sort-keys` in the config.

PARAMETERS

-T, --template TEMPLATE

Render output using a custom template.
--sort KEY
Sort by key: name, author-name, author-email, author-date, committer-name, committer-email, committer-date. Suffix with - for descending.

SEE ALSO

Copied to clipboard
Kai