jj Verified current stable Not installed? Version Control

Jj / List Tags Matching Substring

List Tags Matching Substring

Use the jj command to list tags that match a specific substring, aiding version validation.

$
Terminal
jj tag l "{substring:release}"

When To Use

Validating specific version tags before automated deployment procedures.

Terminal Output

Expected runtime feedback

Simulated preview
>
Output
release-1.0.0
release-1.0.1
release-1.1.0
release-2.0.0

Command Breakdown

What each part is doing

jj
Base Command
The executable that performs this operation. Here it runs Jj before the shell applies any redirect operators.
l
l|list
The value supplied for l|list.
{substring:release}
substring:release
The value supplied for substring:release.

How To Run

Execution path

  1. Step 1

    Open your terminal.

  2. Step 2

    Run the command: jj tag list "{{substring:release}}".

  3. Step 3

    Review the output for matching tags.

Alternative Approaches

Comparable commands in other tools

Alternative version control tools for the same job.